FrameStyle

How change TfrMemoView.FrameStyle in runtime?

Comments

  • gordkgordk St.Catherines On. Canada.
    edited 2:54AM
    internally
    typically in obp event of band
    memo1.framestyle := psdot;
    look at property from fr's object inspector to see values allowed.
    externally
    after loading report use findobject method and set property
    someprocedure
    var
    V:tfrview;
    frreport1.loadfromfile('reportname.frf');
    v:= frreport1.findobject('memo1');
    v.prop := pssolid;
    frreport1.show report
    end;
    regards ;)

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.