ST
stanleyj
Syncfusion Team
February 2, 2006 06:49 AM UTC
Hi Rohith,
You will have to reassign in some handler like code below.
private void gridControl1_CurrentCellMoved(object sender, Syncfusion.Windows.Forms.Grid.GridCurrentCellMovedEventArgs e)
{
cell = this.gridControl1[2,2];
}
The other way is to directly access the cell through the indexer instead of relying on the GridStyleInfo variable.
Best regards,
Stanley