CimObjectVariable.Value (read/write property)

Obsolete

Replaced by a GefObjectVariable

Syntax

CimObjectVariable.Value

Description

Returns a Variant representing the value of the variable. However, the value is most commonly returned as a string.

Comments

This is the default property

Example

Dim oldValue As String

oldValue = xposVar.Value

xposVar.Value ="TANK_LEVEL1"

 

Since this is the default property, the above can also be written as:

 

Dim oldValue As String

oldValue = xposVar

xposVar = "TANK_LEVEL1"

More information

Obsolete basic extensions.