Grid.Cells.Hover does not exist

TeeGrid VCL / FMX for Embarcadero RAD Studio, Delphi, C++ Builder and Lazarus Free Pascal.
Post Reply
Softtouch
Newbie
Newbie
Posts: 4
Joined: Mon Oct 18, 2021 12:00 am

Grid.Cells.Hover does not exist

Post by Softtouch » Tue Oct 19, 2021 4:48 pm

The following code from your "New and improved features" for the 1.11 version does not work:

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;
TeeGrid1.Cells.Hover does not exist at all for me.

Yeray
Site Admin
Site Admin
Posts: 9509
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: Grid.Cells.Hover does not exist

Post by Yeray » Thu Oct 21, 2021 7:56 am

Hello,

I'm investigating how it came into that section. In the meanwhile I suspect it meant to be Rows instead of Cells:

Code: Select all

TeeGrid1.Rows.Hover.Visible:=True;
TeeGrid1.Rows.Hover.FullRow:=True;
TeeGrid1.Rows.Hover.Format.Stroke.Size:=2;
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Post Reply