Gets or sets the group's name.

Syntax

public string Name { get; set; }

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;