6

I have a TStringGrid object on a form which has 1 FixedCol and 1 FixedRow. I want to be able to select an entire row on the object when the user clicks on any cell within that row. This selection must also be visible to the user (I want the row to change colour).

EDIT: Have put goRowSelect in options on the object. Is there now a way to select the row on the click of one of the cells in the fixed column?

Johan
  • 74,508
  • 24
  • 191
  • 319
Seryth
  • 133
  • 1
  • 3
  • 10

2 Answers2

7

In order highlight entire row when ever the user clicks on any cell in that row, set the following StringGrid properties.

In design time: Go to options property and check the following sub-properties.

goEditing := TRUE;
goRowSelect := TRUE;

To achieve this at run time,

StringGrid1.Options := StringGrid1.Options + [goEditing];
StringGrid1.Options := StringGrid1.Options + [goRowSelect];
Bernd Linde
  • 2,098
  • 2
  • 16
  • 22
5

If you enable the option goFixedColClick of the string grid you can then use the OnFixedCellClick event to determine which row to select. You can then set StringGrid1.Selection := TGridRect(Rect(0, Row, n, Row)); where Row is the row clicked and n is the width of your StringGrid.

Andy_D
  • 2,340
  • 16
  • 21
  • Really sorry for my ignorance here... But how would I go about selecting the Row? I understand that I will need to use the ARow and ACol variables declared in the Sender section of the procedure but other than that, am pretty lost. – Seryth Feb 28 '14 at 12:08
  • @Seryth I've updated my answer to include details on how to select a row in code. – Andy_D Feb 28 '14 at 12:16
  • Don't forget to make sure that the user clicked on a non-fixed row before changing the selection. – Bruce McGee Feb 28 '14 at 12:24