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

Syntax

public RibbonToolTip ToolTip { get; }

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";

Limitations

Read only.