CimClassDataItemExpression.SecondOperandNum (property)

gets and sets the second operand as a number.
Syntax: double = object.SecondOperandNum
object.SecondOperandNum = double
Description: CimClassDataItemExpression.SecondOperandNum is number that hlds the first (or left) hand side of the opperand if the value is to be treated as a number. Use CimClassDataItemExpression.SecondOperandString if your value is a string.

Examples

Dim class As CimClassInstance
Dim dataItem As CimPoint
[...]
Set dataItem = class.DataItems.Item("EXISTING_POINT")
Set expressionList = dataItem.Expressions
Set expression = expressionList.Add("$LEVEL")
expression.SecondOperandNum = 2.2