func_maxgui_loadguifont.rst 728 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. .. _func_maxgui_loadguifont:
  2. ===========
  3. LoadGuiFont
  4. ===========
  5. LoadGuiFont -
  6. Description
  7. ===========
  8. .. code-block:: blitzmax
  9. LoadGuiFont:TGuiFont(name$,height:Double,bold=False,italic=False,underline=False,strikethrough=False)
  10. Load a system font by name.
  11. Loads a system font by name and returns and object that can be used with the #SetGadgetFont command.
  12. Depending on the platform, some gadgets may not respond to all or any of the attributes specified.
  13. See Also: #RequestFont, #LookupGuiFont, #FontName, #FontSize and #FontStyle
  14. Parameters
  15. ==========
  16. Return Values
  17. =============
  18. A @TGuiFont object, or #Null if a suitable matching font was not found on the system.
  19. Examples
  20. ========
  21. See Also
  22. ========