Skip to main content

SuperToolTip.FixedTooltipWidth Property

Gets or sets whether the tooltip width is fixed or corresponds to the content.

Namespace: DevExpress.Utils

Assembly: DevExpress.Utils.v23.2.dll

NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core

Declaration

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

Property Value

Type Default Description
Boolean false

true, if the tooltip width is fixed; false, if the tooltip is automatically resized to fit its content.

Remarks

If the FixedTooltipWidth property equals true, the tooltip width is set to 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).

If the FixedTooltipWidth property equals false, the tooltip width is automatically calculated based on the content. You can use the MaxWidth property to limit the maximum width.

See Also