Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

SuperToolTip.FixedTooltipWidth Property

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

Namespace: DevExpress.Utils

Assembly: DevExpress.Utils.v24.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