Gets or sets the highlight color of a ribbon's first tab which is used, when the mouse pointer is moved over it.

Syntax

public Color ApplicationMenuTabHighlightColor { get; set; }
Public Property ApplicationMenuTabHighlightColor As Color

Examples

The following example shows a Ribbon.Colors class. The class uses its ApplicationMenuTabHighlightColor property and sets the value of the property to White in order to highlight the color of a ribbon's first tab which is used, when the mouse pointer is moved over it.

TXTextControl.Windows.Forms.Ribbon.Ribbon.Colors ribbonColors =  
new TXTextControl.Windows.Forms.Ribbon.Ribbon.Colors();

ribbonColors.ApplicationMenuTabHighlightColor 
= System.Drawing.Color.White;
Dim ribbonColors As TXTextControl.Windows.Forms.Ribbon.Ribbon.Colors = 
New TXTextControl.Windows.Forms.Ribbon.Ribbon.Colors()

ribbonColors.ApplicationMenuTabHighlightColor 
= System.Drawing.Color.White