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

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;