DIAdem Help

Object: View

  • Updated2024-09-12
  • 1 minute(s) read

Object: View

The View object accesses the subobjects in DIAdem VIEW. Use the View object to load and to save layouts. The View object is available as a global object in scripts and in dialog boxes.

Note  Do assign the name View to any of the objects and variables you create because that overwrites the View object.

The following example provides the active worksheet as an object and displays the name:

VBScriptPython

 

Dim oMySheet
Set oMySheet = View.ActiveSheet
MsgBox oMySheet.Name