*Font() - HyperView
Specifies the font name, weight, style, and size of the note text.
Syntax
*Font (name, style, weight, size)
Application
HyperView
Inputs
- name
- The font name.
- style
- The font style.
- weight
- The font weight.
- size
- The font size: 8 to 48 point.
Context
*BeginNote()
*BeginTensor()
*BeginVector()
Example
*BeginNote(On, "Model Info")
    *Transparent(On)
    *Attach(WINDOW)
    *Position(0.894185, 0.962798)
    *Text("{modeltitle}")
    *Text("{loadcase} : {simulationstep}")
    *Font("Arial", "regular", "regular", 12)
    *Color(1)
    *BorderWidth(0)
    *NoteAlignment(Right)
    *NoteAnchor(Right, Top)
    *TitleFlag(Yes)
*EndNote()