バージョン

CellEventHandler デリゲート

イベント引数としてCellEventArgsを取得するイベントを処理するためのデリゲート。
シンタックス
'宣言
 
Public Delegate Sub CellEventHandler( _
   ByVal sender As Object, _
   ByVal e As CellEventArgs _
) 
public delegate void CellEventHandler( 
   object sender,
   CellEventArgs e
)

パラメータ

sender
e
使用例
Imports Infragistics.Shared
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinGrid
Imports System.Diagnostics

   Private Sub UltraGrid1_CellChange(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinGrid.CellEventArgs) Handles ultraGrid1.CellChange

       ' ユーザーがセルの値を変更したときに CellChange イベントが発生します
       ' このイベントはテキスト ボックスの TextChanged イベントに似ています

       Debug.WriteLine("New value = " & e.Cell.Text)

   End Sub
using Infragistics.Shared;
using Infragistics.Win;
using Infragistics.Win.UltraWinGrid;
using System.Diagnostics;

private void ultraGrid1_CellChange(object sender, Infragistics.Win.UltraWinGrid.CellEventArgs e)
{

	// ユーザーがセルの値を変更したときに CellChange イベントが発生します
	// このイベントはテキスト ボックスの TextChanged イベントに似ています

     Debug.WriteLine( "New value = " + e.Cell.Text );

}
参照