Steema Issues Database

Note: This database is for bugs and wishes only. For technical support help, if you are a customer please visit our online forums;
otherwise you can use StackOverflow.
Before using this bug-tracker we recommend a look at this document, Steema Bug Fixing Policy.



Bug 2201 - Hover : lazarus [2.0-FPC 3.04 -64] ->Error: identifier idents no member "Hover" [TeeGrid 1.08]
Summary: Hover : lazarus [2.0-FPC 3.04 -64] ->Error: identifier idents no member "Hove...
Status: UNCONFIRMED
Alias: None
Product: TeeGrid for Delphi
Classification: Unclassified
Component: Grid (show other bugs)
Version: unspecified
Hardware: PC Windows
: --- normal
Target Milestone: ---
Assignee: david berneda
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2019-05-20 08:41 EDT by Gilles H.
Modified: 2019-05-22 04:27 EDT (History)
0 users

See Also:
Chart Series: ---
Delphi / C++ Builder RAD IDE Version:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Gilles H. 2019-05-20 08:41:11 EDT
procedure TForm1.FormCreate(Sender: TObject);
begin  
 TeeGrid1.Cells.Hover.Visible:= False;
 TeeGrid1.Cells.Hover.FullRow:= False;  
end;
Comment 1 Gilles H. 2019-05-22 04:27:32 EDT
 https://github.com/Steema/TeeGrid/wiki/3.-Getting-Started :

[...]
. Cell mouse-hover (highlights cell under mouse cursor)
The Cell (or all cells in a row) under the mouse cursor can be highlighted:

TeeGrid1.Cells.Hover.Visible:= True;
TeeGrid1.Cells.Hover.FullRow:= True;
TeeGrid1.Cells.Hover.Format.Stroke.Size:= 2;

. All coordinates as floats
[...]

With FMX, the same code returns :
'TTexRender' ne contient pas un membre nommé 'Hover'

in uses : [..], FMXTee.Control, FMXTee.Grid, FMXTee.Grid.themes,
  Tee.GridData.DB, Tee.GridData.Rtti, Tee.GridData.Strings, Tee.Format, Tee.Grid.Columns,
  Tee.Grid.bands, Tee.Grid.RowGroup, Tee.Grid.Rows, Tee.Grid.Selection, Tee.Grid.Themes,
  Tee.Grid.bands.columns, Tee.Render, [..].

I am missing a unit in my uses ?
Regards. Gilles