Gets or sets the group's name.

Syntax

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

Examples

The following example shows the ContextualTabGroup class. The class uses its 'Name' property to set the name of the group.

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