*BeginSavedView()

Indicates the beginning of a saved view block.

Syntax

*BeginSavedView (view_name)

Application

HyperView

Inputs

view_name
The label of the memory view.

Context

*BeginWindow()

Example

*BeginWindow()
   *BeginSavedView(“View 1”)
      *ProjectionType()
      *ClippingRegion()
      *View()
      *BeginMask()
          *BeginSelection()
              *Add()
          *EndSelection()
      *EndMask()
   *EndSavedView()
*EndWindow()

Comments

A *BeginSavedView() block may be placed inside a *BeginWindow() block to create memory views.

Every *BeginSavedView() statement requires a closing *EndSavedView() statement.

You can create several memory views by placing the memory view within a *BeginWindow() block.

The *BeginMask statement is an optional statement that defines a masking state that is stored within the saved view.