Gets or sets the highlight color of a ribbon tab which is used when a tab is selected.

Syntax

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

Examples

The following example shows a Ribbon.Colors class. The class uses its HighlightTabColor property and sets the value of the property to White in order to highlight color of a ribbon tab which is used when a tab is selected.

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

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

ribbonColors.HighlightTabColor = System.Drawing.Color.White