*NoteAnchor()
Specifies the anchor alignment of the added note.
Syntax
*NoteAnchor (horizontal, vertical)
Application
HyperView
Inputs
- horizontal
 - The horizontal text alignment. Options include right, left, or center.
 - vertical
 - The vertical text alignment. Options include top or bottom.
 
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()