Skip to main content
A newer version of this page is available. .

SuperToolTip.FixedTooltipWidth Property

Gets or sets whether the tooltip’s width is fixed or automatically adjusted to fit the tooltip’s contents entirely.

Namespace: DevExpress.Utils

Assembly: DevExpress.Utils.v19.2.dll

Declaration

[DefaultValue(false)]
public virtual bool FixedTooltipWidth { get; set; }

Property Value

Type Default Description
Boolean **false**

true if the tooltip’s width is fixed; false if the tooltip is automatically resized to fit its contents entirely.

Remarks

If the FixedTooltipWidth property is set to true the tooltip’s width is fixed and matches one of the following values:

  • 210 - if the tooltip contains a small image (an image whose width is less or equal to 16 pixels);
  • 318 - if the tooltip contains a large image (an image whose width is greater than 16 pixels).

Setting the FixedTooltipWidth property to false enables the automatic resizing feature. In this mode, the tooltip’s width will be calculated automatically based on its contents. The width can be limited by setting the SuperToolTip.MaxWidth property.

See Also