Description
The value of the independent variable after the last targeter run.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property CurrentValue() As System.Object
|
[C#] |
---|
public System.Object CurrentValue {get; set;}
|
[Managed C++] |
---|
public: __property VARIANT get_CurrentValue(); public: __property void set_CurrentValue(
VARIANT
);
|
[Unmanaged C++] |
---|
public: HRESULT get_CurrentValue(
VARIANT * pVal
);
public: HRESULT put_CurrentValue(
VARIANT newVal
);
|
[Java] |
---|
public AgVariant getCurrentValue();
public void setCurrentValue(
AgVariant
);
|
[Python - STK API] |
---|
@property
def CurrentValue(self) -> typing.Any:
@CurrentValue.setter
def CurrentValue(self, newVal:typing.Any) -> None:
|
See Also