*Font()
Specifies the font type, weight, style, and size of text for page headers and footers, and the text editor.
Syntax
*Font (Font Name, Weight, Slant, Size)
Application
HyperGraph
Inputs
- Font Name
 - 
            
- Font type:
 - Courier, Helvetica, New Century Schoolbook, or Times.
 
 - Weight
 - The font weight, 1 or 0.
- 1
 - Bold
 - 0
 - Normal (default)
 
 - Slant
 - The font style, 1 or 0.
- 1
 - Italic
 - 0
 - Normal (default)
 
 - Size
 - 
            
- Font size:
 - 8, 10, 12, 14, 18, or 24.
 
 
Context
*BeginRegion()
Example
*BeginRegion(100, 0, 900, 1000)
    *Alignment(Center)
    *Font("Times",0,1,12)
    *Text("Example Footer")
    *BorderWidth(1,1,1,1)
*EndRegion()