Font Size in Popupmenu

Viewing 1 post (of 1 total)
  • Author
    Posts
  • #46178
    Support
    Keymaster

    Hello

    For changing a menu font you can use the CustomMenuFont:TFont variable.

    This variable is declared in the sSkinMenus.pas unit and used for drawing of text in menus (if CustomMenuFont is not Nil).

    Example of using :

      CustomMenuFont := TFont.Create;

    CustomMenuFont.Name := 'Comic Sans MS';

    CustomMenuFont.Style := [fsBold];



    uses sSkinMenus;
Viewing 1 post (of 1 total)
  • You must be logged in to reply to this topic.