Gets or sets the group's header. The header's text is shown in the application's caption, when the group is visible.

Syntax

public string Header { get; set; }
Public Property Header() As String

Examples

The following example shows the 'ContextualTabGroup' class. The 'header' property is used to set the name of the group header.

TXTextControl.Windows.Forms.Ribbon.ContextualTabGroup tabGroup = new TXTextControl.Windows.Forms.Ribbon.ContextualTabGroup();
    tabGroup.Name = "-------";
    tabGroup.Header = "-------";
    tabGroup.BackColor = System.Drawing.Color.White;
Dim tabGroup As TXTextControl.Windows.Forms.Ribbon.ContextualTabGroup = New TXTextControl.Windows.Forms.Ribbon.ContextualTabGroup()
   tabGroup.Name = "-------"
   tabGroup.Header = "-------"
   tabGroup.BackColor = System.Drawing.Color.White