Code: Select all
Cell (or all cells in row) under mouse cursor can be highlighted:
TeeGrid1.Cells.Hover.Visible:= True;
TeeGrid1.Cells.Hover.FullRow:= True;
TeeGrid1.Cells.Hover.Format.Stroke.Size:= 2;
Code: Select all
Cell (or all cells in row) under mouse cursor can be highlighted:
TeeGrid1.Cells.Hover.Visible:= True;
TeeGrid1.Cells.Hover.FullRow:= True;
TeeGrid1.Cells.Hover.Format.Stroke.Size:= 2;
Rows
instead of Cells
:
Code: Select all
TeeGrid1.Rows.Hover.Visible:=True;
TeeGrid1.Rows.Hover.FullRow:=True;
TeeGrid1.Rows.Hover.Format.Stroke.Size:=2;
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |