SetFont
SetFont FontIndex
 
Parameters:

    FontIndex = The index identifier of the font you want to draw with
Returns: NONE
 

     SetFont changes the current font used for all text output (Ie. Print / Text).



FACTS:


     * PlayBASIC uses font #1 for it's default font.

     * See GetCurrentFont() for the current font.




Mini Tutorial:




  
  
; Load the "Arial" font as font 2, of size 24, in the normal style
  LoadFont "Arial",2,24,0
  
; Set Font 2 at the current font.
  SetFont 2
  
; Display a message in the New current font
  Print "This text is displayed in the Arial font"
  
; Display the screen and wait for a key top be pressed
  Sync
  WaitKey
  



This example would output.

  
  This Text is displayed in the Arial font
  

 
Related Info: DeleteFont | GetCurrentFont | LoadFont :
 


(c) Copyright 2002 - 2024 - Kevin Picone - PlayBASIC.com