TableView Header/Footer

I wonder if there is a way to hide the Header and the Footer of

a TableView. In the object inspector I don't see any property
able to do this.

Thank you

Hi, 


We have added a HeaderVisible and a FooterVisible property that will allow you to hide the header and footer. The next version will address this. 

Alternatively you can use the following code:

procedure TForm1.TMSFMXTableView1ApplyStyleLookup(Sender: TObject);
begin
  TMSFMXTableView1.GetHeaderRectangle.Visible := False;
  TMSFMXTableView1.GetFooterRectangle.Visible := False;
end;

Kind Regards, 
Pieter