バージョン

GroupRemoved イベント

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

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

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


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

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

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


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