バージョン

Cell プロパティ (CellEventArgs)

対象となるセルへの参照を返します。
シンタックス
'宣言
 
Public ReadOnly Property Cell As UltraGridCell
public UltraGridCell Cell {get;}
使用例
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 );

}
参照