*BeginData()
Indicates the beginning of a data block for a vector.
Syntax
*BeginData()
Application
HyperGraph
Context
*BeginCurve()
*BeginVector()
Report Definitions
Example
*BeginCurve(On, "Untitled")
	• • •
	*BeginVector(X, Math)
		*expression("p1w1c2.x")
		*ScaleFactor(1)
		*Offset(0)
		*BeginData()
			*CurvePoint(0)
			*CurvePoint(0.00143181)
			*CurvePoint(-7.37615)
			*CurvePoint(-7.38428)
			*CurvePoint(-7.36975)
			*CurvePoint(-7.32985)
			*CurvePoint(-7.28396)
		*EndData()
			• • •
	*EndVector()
*EndCurve()Comments
Data blocks contain the data points for vectors which are frozen or use values as the data source.
When a vector is frozen, it is no longer dependent on the expression defining it. Instead, the point coordinates are stored in the session file.
Every *BeginData() statement requires a closing *EndData() statement.