バージョン

CellEventArgs クラス

セルを指定する行および列 (行と列の交差点) を引数とするイベントに使用されるイベントパラメーターです。
シンタックス
'宣言
 
Public Class CellEventArgs 
   Inherits System.EventArgs
public class CellEventArgs : System.EventArgs 
使用例
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 );

}
参照