バージョン

Groups プロパティ

ルート UltraExplorerBarGroup オブジェクトの UltraExplorerBarGroupsCollection を返します。
シンタックス
'宣言
 
Public ReadOnly Property Groups As UltraExplorerBarGroupsCollection
public UltraExplorerBarGroupsCollection Groups {get;}
解説

このプロパティは、UltraExplorerBarGroup オブジェクトのコントロールのコレクションを公開します。グループはゼロ以上の UltraExplorerBarItem オブジェクトまたはひとつの UltraExplorerBarContainerControl を含みます。設定を個々のグループに指定することができます。またはデフォルトのグループ設定を GroupSettings プロパティに設定できます。

使用例
Imports System.Diagnostics
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinExplorerBar


	Private Sub Button7_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles button7.Click

		' Count the total number of items in all Groups.
		Dim totalItems As Integer = 0

		Dim group As UltraExplorerBarGroup
		For Each group In Me.ultraExplorerBar1.Groups
			totalItems += group.Items.Count
		Next

	End Sub
using System.Diagnostics;
using Infragistics.Win;
using Infragistics.Win.UltraWinExplorerBar;


		private void button7_Click(object sender, System.EventArgs e)
		{
			// Count the total number of items in all Groups.
			int totalItems = 0;

			foreach(UltraExplorerBarGroup group in this.ultraExplorerBar1.Groups)
			{
				totalItems += group.Items.Count;
			}
		}
参照