Gets or sets the group's visibility.

Syntax

public bool Visible { get; set; }

Examples

The following example shows the ContextualTabGroup class. Here, the 'Visible' property is used by setting its value to 'true' in order to make the group visible.

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