NR
Nirmal Raja
Syncfusion Team
August 7, 2008 05:19 AM UTC
Hi Stephane,
Thank you for your interest in Syncfusion product.
The GridControl has a method called RefreshRange() which is used to refresh a range of cell.
The range should be given using GridRangeInfo class and the colindex which has to be refreshed has to be given in the method col() of GridRangeInfo.
Please refer the below code snippet for detail:
int colindex = this.gridControl1.CurrentCell.ColIndex;
this.gridControl1.RefreshRange(GridRangeInfo.Col(colindex));
Let me know if you have any queries.
Regards,
Nirmal
S_
Stephane _
August 7, 2008 01:27 PM UTC
Can’t believe I didn’t see it, looks obvious this way.
It’s working great and the refresh is pretty fast.
Thanks!