gets and sets the second operand as a string. | |
Syntax: | String =
object.SecondOperandString object.SecondOperandString = String |
Description: |
CimClassDataItemExpression.SecondOperandString is string
that hlds the second (or right hand) side of the opperand. Use
CimClassDataItemExpression.SecondOperandNum
if your value is a number. 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.SecondOperandString = "SOME_VALUE" |