DIAdem Help

Method: Exists for Dimensions

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

Method: Exists for Dimensions

Checks whether a cursor dimension with a specific name exists in DIAdem VIEW.

bExists = Object.Exists(Name)
ObjectDimensions
Object with this method
NameString
Specifies the name of the cursor dimension.
bExistsBoolean
Specifies whether the cursor dimension with the specified name already exists (TRUE) or not (FALSE).

The following example indicates whether a cursor dimension exists:

VBScriptPython

 

Call MsgBox(View.ActiveSheet.Cursor.Dimensions.Exists("Dimension1"))