*NoteAlignment() - HyperView
Specifies the note’s text alignment.
Syntax
*NoteAlignment (alignment)
Application
HyperView
Inputs
- alignment
 - 
            
- Left
 - Aligns the note text along the left border of the note box.
 - Center
 - Centers the note text in the note box.
 - Right
 - Aligns the note text along the right border of the note box.
 
 
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()