AD
Administrator
Syncfusion Team
May 27, 2006 09:54 AM UTC
You can try code like:
private void gridControl1_CellClick(object sender, GridCellClickEventArgs e)
{
String cellType = this.gridControl1[e.RowIndex, e.ColIndex].CellType;
Type cellValueType = this.gridControl1[e.RowIndex, e.ColIndex].CellValueType;
Console.WriteLine("cellType {0} cellValueType {1}", cellType, cellValueType);
}