GetCurrentFont
CurrentFontIndex = GetCurrentFont()
 
Parameters: NONE
Returns:

    CurrentFontIndex = The Index value of a Font that is currently in use
 

      The GetCurrentFont function returns the Index of a Font that is currently in use.



FACTS:


      * none.



Mini Tutorial:


      Requesting a free Font index, then loads the Arial font and displays a message.

  
; Display the current font in use
  Print "Current Font in use is Font #"+Str$(GetCurrentFont())
  
; 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 the current font in use
  Print "Current Font in USe is Font #"+Str$(GetCurrentFont())
  
; Display the screen and wait for a key top be pressed
  Sync
  WaitKey
  


This example would output.

  
  Current Font in use is Font #1
  Current Font in use is Font #2
  


 
Related Info: DeleteFont | FindFont | GetFontHeight | GetFontName$ | GetFontSize | GetFontStatus | GetFontStyle | GetFontType | GetFontWidth | GetFreeFont | LoadFont | SetFont :
 


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