Remove footer from TableView

Hello


How can I remove the footer band entire in the TableView? 

I don't want remove the footer caption but the entire band.

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 v1.5.1.2