バージョン

GroupExpanded イベント

UltraExplorerBarGroup が展開された後に発生します。
シンタックス
'宣言
 
Public Event GroupExpanded As GroupExpandedEventHandler
public event GroupExpandedEventHandler GroupExpanded
イベント データ

イベント ハンドラが、このイベントに関連するデータを含む、GroupEventArgs 型の引数を受け取りました。次の GroupEventArgs プロパティには、このイベントの固有の情報が記載されます。

プロパティ解説
Group UltraExplorerBarGroup に関連付けられた UltraExplorerBarGroup を返します。(参照のみ)。
使用例
Imports System.Diagnostics
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinExplorerBar


	Private Sub ultraExplorerBar1_GroupExpanded(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinExplorerBar.GroupEventArgs) Handles ultraExplorerBar1.GroupExpanded

		Debug.WriteLine(String.Format("The group '{0}' has been expanded", e.Group))

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


		private void ultraExplorerBar1_GroupExpanded(object sender, Infragistics.Win.UltraWinExplorerBar.GroupEventArgs e)
		{
			Debug.WriteLine(string.Format("The group '{0}' has been expanded", e.Group));
		}
参照