Skip to main content

GalleryItem.SuperTip Property

Gets or sets a SuperToolTip for the current bar item.

Namespace: DevExpress.XtraBars.Ribbon

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public SuperToolTip SuperTip { get; set; }

Property Value

Type Description
SuperToolTip

A SuperToolTip object associated with the item.

Remarks

Gallery items support regular tooltips and SuperToolTip objects. The type of tooltips displayed for bar items is determined by a ToolTipController object (by default, by the DefaultToolTipController). The SuperTip property allows you to assign a SuperToolTip object to the gallery item. A regular hint is specified by the GalleryItem.Hint property.

The appearance and behavior of hints is determined by a Tool Tip Controller. If a gallery item is used within a RibbonControl, the Tool Tip Controller is specified by the RibbonControl.ToolTipController property. If a gallery item is used within a GalleryControl, the Tool Tip Controller is specified by the GalleryControl’s inherited BaseControl.ToolTipController property.

By default, the ToolTipController properties contain null references, which means that tooltips are handled by the DefaultToolTipController.

See Hints and Tooltips, for more information.

See Also