バージョン

ShowExpansionIndicator プロパティ (UltraExplorerBarGroupSettings)

Groupヘッダーに展開インジケーターを表示するかどうかを取得または設定します。UltraExplorerBar の UltraExplorerBarStyle が"ExplorerBar"または"VisualStudio2005Toolbox"に設定されている場合のみ適用されます。
シンタックス
'宣言
 
Public Property ShowExpansionIndicator As Infragistics.Win.DefaultableBoolean
public Infragistics.Win.DefaultableBoolean ShowExpansionIndicator {get; set;}
解説

注: ShowExpansionIndicator プロパティは、コントロールの Style プロパティが 'ExplorerBar' または '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;
参照