DocumentManager.ToolTipController Property
Gets or sets the tooltip controller component that controls the appearance, position and content of hints displayed for the current DocumentManager.
Namespace: DevExpress.XtraBars.Docking2010
Assembly: DevExpress.XtraBars.v24.1.dll
NuGet Package: DevExpress.Win.Navigation
Declaration
[DefaultValue(null)]
[DXCategory("Appearance")]
public virtual ToolTipController ToolTipController { get; set; }
Property Value
Type | Default | Description |
---|---|---|
ToolTipController | null | The ToolTipController component controlling the appearance and behavior of hints displayed for the current DocumentManager. |
Remarks
The content and availability of hints displayed for documents is controlled by the Document.Tooltip, Document.SuperTip and DocumentManager.ShowToolTips properties. By default, hints display only the specified text, and have the default shape and appearance. The content, appearance and behavior of tooltips can be customized using tooltip controllers.
By default, the ToolTipController property is set to null, and the DocumentManager‘s tooltips are handled by the Default ToolTipController, which is available via the DefaultToolTipController component. Changing this object’s properties and handling its events affects hints displayed for all controls whose ToolTipController property is set to null.
See the Hints and Tooltips topic to learn more.