DeleteFont
DeleteFont FontIndex
 
Parameters:

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

      DeleteFont will remove a font from memory.




FACTS:


      * If the you delete the current font, you will have to tell PB which font you want to use for print/text again using SetFont.




Mini Tutorial:


      This example displays a messsage in the current font (font 1), loads a second font, then deletes the previously loaded font 2 and displays it's status after being deleted.


  
  
; Display a message in the PB default font
  Print "This text is displayed in the normal font"
  
; Load the "Arial" font as font 2, 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 font
  Print "This text is displayed in the Arial font"
  
; Delete this new font
  DeleteFont 2
  
; Set Font 1 at the current font.
  SetFont 1
  
; Display a message in the Font 1
  Print "Font 2 has been deleted "
  Print "Font 2 Status:"+Str$(GetFontStatus(2))
  
; Display the screen and wait for a key top be pressed
  Sync
  WaitKey
  




This example would output.

  
  Print "This text is displayed in the normal font"
  Print "This text is displayed in the Arial font"
  Font 2 has been deleted
  Font 2 Status:0
  

 
Related Info: LoadFont | LoadNewFont | MakeBitmapFont | SetFont :
 


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