Get Grid Current Cell

Hi,

Hw do I get GridCurrentCell of a particular row column of a grid.
Meaning I want the object of GridCurrentCell of 3rd row, 2nd column of a grid.

Thanks,
Raul Dsouza

1 Reply

HA haneefm Syncfusion Team May 21, 2007 03:35 PM UTC

Hi Raul,

Please try this code.

this.grid.CurrentCell.MoveTo(3,2); //For the CurrentCell to 3rd row, 2nd column in a grid.
GridCurrentCell cc = this.grid.CurrentCell; //get the CurrentCell in a grid.

Best regards,
Haneef

Loader.
Up arrow icon