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

BaseLayoutItem.OptionsToolTip Property

Contains options that allow tooltips to be assigned to layout items and their images.

Namespace: DevExpress.XtraLayout

Assembly: DevExpress.XtraLayout.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

[DXCategory("Options")]
[XtraSerializableProperty(XtraSerializationVisibility.Content)]
public virtual BaseLayoutItemOptionsToolTip OptionsToolTip { get; set; }

#Property Value

Type Description
BaseLayoutItemOptionsToolTip

A BaseLayoutItemOptionsToolTip object providing corresponding options.

#Remarks

Properties accessible via the OptionsToolTip object allow you to assign tooltips to layout items and their images. Typically, you use the BaseLayoutItemOptionsToolTip.ToolTip property to provide a tooltip for a layout item. When hovering over the layout item’s caption or image, this tooltip will be displayed. To provide a different tooltip for the layout item’s image, use the BaseLayoutItemOptionsToolTip.IconToolTip property.

Tooltips are managed by a ToolTipController object (by default, by the Default ToolTipController, accessible via the DefaultToolTipController object). To manage tooltips using a different ToolTipController, assign a ToolTipController object to the LayoutControl.ToolTipController property.

See Also