TTMSFMXNavBar Orientation

ahhhhhhh, disregard my message above (except the part about the manual)

If I create panels and sections, then turn the device to landscape, it throws an acess violation

    NavBar.BeginUpdate;
    for I := 0 to  LPSystem.NavData.Tabs.Count-1 do
    begin
     Panel:= TTMSFMXNavBarPanel.Create(NavBar);
     Panel.Caption:= LPSystem.NavData.Tabs.Name;
     NavBar.AddPanel(Panel);
      for J := 0 to  LPSystem.NavData.Tabs.Sections.Count-1 do
      begin
       Section:= Panel.Sections.Add;
       Section.Caption:= LPSystem.NavData.Tabs.Sections[J].Name;
       end;
    end;
    NavBar.BeginUpdate;
   end