Gets an object of type RibbonToolTip that displays text when the mouse pointer hovers over the item.

Syntax

public RibbonToolTip ToolTip { get; }
Public ReadOnly Property ToolTip() As RibbonToolTip

Examples

The following example shows how the RibbonButtons ToolTip properties "Description" and "Title" are set.

TXTextControl.Windows.Forms.Ribbon.RibbonButton ribbonButton = new TXTextControl.Windows.Forms.Ribbon.RibbonButton();
ribbonButton.ToolTip.Description = "MyRibbonButton´s Tooltip Description";
ribbonButton.ToolTip.Title = "MyRibbonButton´s Tooltip Title";
Dim ribbonButton As TXTextControl.Windows.Forms.Ribbon.RibbonButton = New TXTextControl.Windows.Forms.Ribbon.RibbonButton()
ribbonButton.ToolTip.Description = "MyRibbonButton´s Tooltip Description"
ribbonButton.ToolTip.Title = "MyRibbonButton´s Tooltip Title"

Limitations

Read only.