Font Size in the TAdvOfficePager

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #68853
    Support
    Keymaster

    How to change font of this component? I want to test it.

    #68857
    SpeedTI
    Participant

    The font is changed in the TAdvOfficePagerOfficeStyler component in the TabAppearance-> Font property

    Regards
    Valdir Sola

    #68859
    SpeedTI
    Participant

    I put it manually in the Form’s OnShow event and solved the problem

    procedure TfrmClientes.FormShow (Sender: TObject);
    begin
         with frmGeral.AdvOfficePagerOfficeStyler1.TabAppearance do begin
             Font.Size: = 10;
         end;
    end;

    Regards
    Valdir Sola

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.