Version

ShowExpansionIndicator Property (UltraExplorerBarGroupSettings)

Gets and sets whether the Group header displays an expansion indicator. Applicable only when the UltraExplorerBar's UltraExplorerBarStyle is set to 'ExplorerBar' or 'VisualStudio2005Toolbox'.
Syntax
'Declaration
 
Public Property ShowExpansionIndicator As Infragistics.Win.DefaultableBoolean
public Infragistics.Win.DefaultableBoolean ShowExpansionIndicator {get; set;}
Remarks

Note: The ShowExpansionIndicator property is only applicable when the control's Style property is set to 'ExplorerBar' or 'VisualStudio2005Toolbox'.

Example
The following code demostrates how to use the ShowExpansionIndicator property of the UltraExplorerBarGroupSettings class. The GroupSettings property of the UltraExplorerBar contains default values for all of the groups in the control. Each group will use the settings found in the control's GroupSettings unless you explicitly tell it to use a different value. In this example we are turning off the expansion indicators for all but the first group.

' Note, the ShowExpansionIndicator property only effects the UltraExplorerBar when the
' Style is set to 'ExplorerBar' or 'VisualStudio2005'.
Me.UltraExplorerBar1.Style = UltraExplorerBarStyle.VisualStudio2005Toolbox

' Do not show the expansion indicators by default
Me.UltraExplorerBar1.GroupSettings.ShowExpansionIndicator = DefaultableBoolean.False

' Do show the expansion indicator on the first group header
Me.UltraExplorerBar1.Groups(0).Settings.ShowExpansionIndicator = DefaultableBoolean.True
// Note, the ShowExpansionIndicator property only effects the UltraExplorerBar when the
// Style is set to 'ExplorerBar' or 'VisualStudio2005'.
this.ultraExplorerBar1.Style = UltraExplorerBarStyle.VisualStudio2005Toolbox;

// Do not show the expansion indicators by default
this.ultraExplorerBar1.GroupSettings.ShowExpansionIndicator = DefaultableBoolean.False;

// Do show the expansion indicator on the first group header
this.ultraExplorerBar1.Groups[0].Settings.ShowExpansionIndicator = DefaultableBoolean.True;
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also