Accessing report components from delphi unit

I want to control visibility of some components such as MasterBand before printing in delphi code. How can I refrence components in report? (Other than OnBeforePrint Event)

Comments

  • edited 8:15PM
    You can use the FindObject() method, like this, where MyReport is a reference to a TfrxReport object:

    var
    Band: TfrxBand;
    begin
    Band := MyReport.FindObject('MasterBand1') as TfrxBand;
    end;

    All you need is the name of the object.

    Chris

Leave a Comment

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.