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

Syntax

public Color HighlightTabColor { get; set; }

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;