Is there anyway to determine which rows are currently selected in a multi-select TStringGrid, or a TCustomGrid for that matter. A property would be ideal.

I know that there is the gdSelected property that gets set in the DrawCell event,

procedure DrawCell(ACol, ARow: Longint; ARect: TRect; AState: TGridDrawState);

I can check AState for gdSelected, and keep track of this in an array somewhere, but this seems kludgey.

link|improve this question

62% accept rate
feedback

2 Answers

I guess you are talking about a range-select string grid, that is, a string grid with goRangeSelect in Options. Then you can use the Selection property. This is (essentially) a TRect in which you can find the upper-left and lower-right cell in the range selection.

link|improve this answer
I don't think this will work, the selected rows are not necessarily contiguous. – sse May 10 '11 at 15:33
1  
@user746911: No, I assumed that there is no 'extended select' (as in Ctrl-clicking individual cells). It seems to me, however, that the TStringGrid does not support extended select. (If it does -- how in the world do you enable it?!) – Andreas Rejbrand May 10 '11 at 15:35
AFAICT, @Andreas is right. The standard TStringGrid doesn't support non-contiguous selections. TDBGrid does, however, by keeping a list of bookmarks of selected rows (TDBGrid.SelectedRows property). – Ken White May 10 '11 at 22:13
Ah, I see, you are both right, thanks, TStringGrid.selection.bottom and TStringGrid.selection.top work perfectly for this. Thank you again. – sse May 11 '11 at 1:18
feedback

Oooh, I'm use StringGrid.Selection.BottomRight.Y to determine rows and StringGrid.Selection.BottomRight.X for columns.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.