AD
Administrator
Syncfusion Team
June 2, 2005 05:47 PM UTC
Try:
GridCurrentCell cc = gdBase.TableControl.CurrentCell;
GridTableCellStyleInfo style = gdBase.TableControl.Model[cc.RowIndex, cc.ColIndex];
string colName = style.TableCellIdentity.Column.MappingName;
LM
Lan Mo
June 3, 2005 03:04 PM UTC
It works perfect.
Thanks for great help.
Lan
>Try:
>
>GridCurrentCell cc = gdBase.TableControl.CurrentCell;
>GridTableCellStyleInfo style = gdBase.TableControl.Model[cc.RowIndex, cc.ColIndex];
>string colName = style.TableCellIdentity.Column.MappingName;
>