Skip to main content
A newer version of this page is available. .

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.v19.2.dll

Declaration

[DXCategory("Appearance")]
[DefaultValue(null)]
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 Tooltips topic to learn more.

See Also