'Declaration Public Property ShowExpansionIndicator As Infragistics.Win.DefaultableBoolean
public Infragistics.Win.DefaultableBoolean ShowExpansionIndicator {get; set;}
Note: The ShowExpansionIndicator property is only applicable when the control's Style property is set to 'ExplorerBar' or 'VisualStudio2005Toolbox'.
' 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;
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