*BeginWindow()

Indicates the beginning of a window block.

Syntax

*BeginWindow (Plot/Animation/Model/TextEditor/Video)

Application

MotionView, HyperView, HyperGraph, TextView, and MediaView

Inputs

Plot
Defines a window as a plot window.
Animation
Defines a window as an animation window.
Model
Defines a window as a model window.
TextEditor
Defines a window as a text editor window.
Video
Defines a window as a video window.

Context

*BeginPage()

Example

*BeginPage()
	*IsActive()
	*Title("Force-5", On)
	*Layout(1)
	*CurrentTimeStep(0)
	*BeginWindow(Plot)
		*IsActive()
		*BeginPlot()
		• • •
		*EndPlot()
	*EndWindow()
*EndPage()

Comments

Window blocks define the complete contents of a window. Up to six windows can be defined for each page. Windows can contain model, animation, plot, text, or video data.

Window positions are assigned according to the order of the window blocks in the session. Window positions are assigned from left to right, top to bottom starting with the first window block.

An active window on a page is indicated with the *IsActive() statement.

Every *BeginWindow() statement requires a closing *EndWindow() statement.