Description
Update value of the user variable.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property VariableValue() As System.Object
|
| [C#] |
|---|
public System.Object VariableValue {get; set;}
|
| [Managed C++] |
|---|
public: __property VARIANT get_VariableValue(); public: __property void set_VariableValue(
VARIANT
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_VariableValue(
VARIANT * pVal
);
public: HRESULT put_VariableValue(
VARIANT inVal
);
|
| [Java] |
|---|
public AgVariant getVariableValue();
public void setVariableValue(
AgVariant
);
|
| [Python - STK API] |
|---|
@property
def VariableValue(self) -> typing.Any:
@VariableValue.setter
def VariableValue(self, inVal:typing.Any) -> None:
|
See Also