*BeginNote()

Indicates the beginning of a note block.

Syntax

*BeginNote (On/Off, "Title")

Application

HyperView, HyperGraph, and MediaView

Inputs

On
Displays the note on the plot or video file.
Off
Turns off the note displayed on the curve or video file.
"Title"
The note title. Must be in double quotes.

Context

*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

Notes can be used to label data points and video files, and annotate curves. They can be attached to views, curves, and points. Note blocks define note attributes such as content, font size, and attachment. The *BeginNote() block and its subordinate statements statements (previously found only in *BeginPlot() blocks) are also valid in the *BeginVideo() block.

For more information on plot notes, see Build Plots in the User Guide.

The note title appears in the Note list on the Notes panel.

Every *BeginNote() statement requires a closing *EndNote() statement.