Project

General

Profile

$font » History » Revision 5

Revision 4 (Per Amundsen, 08/10/2015 09:14 AM) → Revision 5/9 (Per Amundsen, 08/12/2015 06:46 PM)

_Added in 1.9.6_ 

 *$font(N|name, *$font(N/name, t)* 

 Lists the Nth installed font. fonts. 

 *Parameters* 

 N|name N/name - Get the name of the    Nth font, if N is 0, returns number of fonts. If a font name is entered, returns [[$true]] if the font is installed, otherwise [[$false]]. 
 t - List only truetype fonts. 

 *Example* 

 <pre> 
 ; Get number of installed fonts. 
 //echo -ag $font(0) 

 ; Check if 'Verdana' is installed. 
 if ($font(Verdana)) { 
   echo -ag Verdana is installed 
 } 
 else { 
   echo -ag Verdana is not installed 
 } 
 </pre>