AD
Administrator
Syncfusion Team
September 16, 2003 09:16 AM UTC
If you have not explicitly added GridBoundColumns, then you could use code like:
int field = _grid.Binder.ColIndexToField(_grid.CurrentCell.ColIndex);
Type t = _grid.Binder.InternalColumns[field].StyleInfo.CellValueType;
If you have added GridBoundColumns, then you would use _grid.GridBoundColumns instead of _grid.Binder.InternalColumns.
RK
Richard Kettelerij
September 17, 2003 03:29 AM UTC
It didn't exactly did the trick, but thanks anyway