Page 1 of 1

Grid.Cells.Hover does not exist

Posted: Tue Oct 19, 2021 4:48 pm
by 18692026
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.

Re: Grid.Cells.Hover does not exist

Posted: Thu Oct 21, 2021 7:56 am
by yeray
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;