Getting the rowids and cellids when a block is selected

hi
If we use enableBlockSelection , is there any way to get row id and cell indexes of a grid.

Thanks
Shriniket

You can use following code:

var area=mygrid._selectionArea; var leftTopCol=area.LeftTopCol; var leftTopRow=area.LeftTopRow; var rightBottomCol=area.RightBottomCol; var rightBottomRow=area.RightBottomRow;

Thanks Olga it is working fine.