Change font size RichView

Luiz HenriqueLuiz Henrique Sorocaba
edited January 2017 in FastReport VCL 5
How can i change the font sieze from richview in run time?
In Delph, i tried:

var
Component: TfrxRichView;
......
......
component := frxreport1.findobject('rich1');
if Component is TfrxRichView then
TfrxRichView(Component).font.size := 10;
......

But nothing happened!

Comments

  • gpigpi
    edited 10:38PM
    TfrxRichView(frxReport1.FindObject('Rich1')).RichEdit.Font.Size := 16;
    

Leave a Comment