'宣言 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;