Designer: show band captions

edited 7:58PM in FastReport 4.0
Hello,

I want to disable the option "Show band captions" .
You can find the option via "View"->"Options"

I already found the other fields but this is the only one 1 can not find.

TfrxDesignerForm(Sender).ShowGrid := True;
TfrxDesignerForm(Sender).GridAlign := True;
TfrxDesignerForm(Sender).Units := duPixels;
TfrxDesignerForm(Sender).GridSize3 := 5;
TfrxDesignerForm(Sender).GridSize4 := 5;

Could you help me out?


Comments

  • gpigpi
    edited 7:58PM
    TfrxDesignerForm(Sender).Workspace.FreeBandsPlacement := False;
    
  • edited 7:58PM
    Thanks it works

    TfrxDesignerForm(Sender).Workspace.ShowBandCaptions := False;
    

Leave a Comment