# C1.Win.SuperTooltip.C1SuperTooltipBase.MaximumWidth

## Content

<div class="doc-site-dotnet-api-container">



<h1 id="C1_Win_SuperTooltip_C1SuperTooltipBase_MaximumWidth_" data-uid="C1.Win.SuperTooltip.C1SuperTooltipBase.MaximumWidth*">MaximumWidth Property
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>



<a id="C1_Win_SuperTooltip_C1SuperTooltipBase_MaximumWidth_" data-uid="C1.Win.SuperTooltip.C1SuperTooltipBase.MaximumWidth*"></a>
<h4 id="C1_Win_SuperTooltip_C1SuperTooltipBase_MaximumWidth" data-uid="C1.Win.SuperTooltip.C1SuperTooltipBase.MaximumWidth">MaximumWidth</h4>
<div class="markdown level1 summary"><p>Gets or sets the maximum width of the tooltips.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public int MaximumWidth { get; set; }</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Property MaximumWidth As Integer</code></pre>
</div>
<h5 id="C1_Win_SuperTooltip_C1SuperTooltipBase_MaximumWidth_remarks">Remarks</h5>
<div class="markdown level1 remarks"><p>The <a class="xref" href="C1.Win.SuperTooltip.C1SuperTooltipBase.html">C1SuperTooltipBase</a> displays Html text. If the tip contains a lot
of text without Html tags that cause line breaks (such as &lt;br&gt; or &lt;p&gt;
for example), then the text will not wrap and the tooltip window may be too wide.</p>
<p>Use this property to force text to wrap within the tooltip so it fits in the
given width, even without Html line break tags.</p>
<p>Values less than or equal to zero disable the property and cause the tip text 
to wrap only at the specified Html break tags.</p>
<example>
The code below forces all super tooltips to be less than or equal to 200 pixels 
wide.
<pre><code class="lang-csharp">c1SuperTooltip1.MaximumWidth = 200;</code></pre>
</example>
</div>
</div>
