how to get ids of block selected cells

hi,

Is there a way to get the ids of the cells that are contained inside a block selection?
In other words, the ids of the cells within selectionArea?

when:
grid.enableBlockSelection(true);

thanks

basically i’m trying to allow users to be able to select a block selection, and click the delete key to clear the values of the cells selected.

You get the indexes of the extreme cells of the selected block by the followingg API:

topr=mygrid.getSelectedBlock().LeftTopRow botr=mygrid.getSelectedBlock().RightBottomRow lcol=mygrid.getSelectedBlock().LeftTopCol rcol=mygrid.getSelectedBlock().RightBottomCol