Hello
How can I remove the footer band entire in the TableView?
I don't want remove the footer caption but the entire band.
Pieter
(Pieter)
October 17, 2014, 10:16am
2
You can remove the footer with the following code, or you can disable it in the style editor by selecting the corresponding element. This is explained in the documentation on the Style Designer
procedure TForm1.TMSFMXTableView1ApplyStyleLookup(Sender: TObject);
begin
TMSFMXTableView1.GetFooterRectangle.Visible := False;
end;
Kind Regards,
Pieter
You can remove the footer with the following code, or you can disable it in the style editor by selecting the corresponding element. This is explained in the documentation on the Style Designer
procedure TForm1.TMSFMXTableView1ApplyStyleLookup(Sender: TObject);
begin
TMSFMXTableView1.GetFooterRectangle.Visible := False;
end;
Kind Regards,
Pieter
Pieter your solutions doesn't work, the resulting app won't start.
Check it by yourself.
Tested on Delphi XE6, TMSFMXTableView v 1.5.1.2