*NoteAlignment() - HyperGraph
Specifies the paragraph alignment of note text.
Syntax
*NoteAlignment (Left/Center/Right)
Application
HyperGraph
Inputs
- Left
- Aligns note text along the left border of the note box.
- Center
- Centers note text in the note box.
- Right
- Aligns note text along the right border of the note box.
Context
*BeginNote()
*BeginPlot()
Report Definitions
Example
*BeginPlot()
	• • •
	*BeginNote(On, "Note 1")
		*Attach(Curve)
		*Position(-5312.61, -2399.28)
		*BeginText()
			*Text("Point {x},{y}")
			*Text("{Slope}")
		*EndText()
		*Font(12)
		*NoteAlignment(Left)
		*CurveAttachment(0, 163)
	*EndNote()
	• • •
*EndPlot()Comments
If no alignment is specified, the text is left aligned.