Description
Gets or sets the current value of the transformation. The current value of the transformation will be reflected in the geometry of the
ModelPrimitive that it is associated with.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property CurrentValue() As Double
|
[C#] |
---|
public double CurrentValue {get; set;}
|
[Managed C++] |
---|
public: __property double get_CurrentValue(); public: __property void set_CurrentValue(
double
);
|
[Unmanaged C++] |
---|
public: HRESULT get_CurrentValue(
double * pRetVal
);
public: HRESULT put_CurrentValue(
double CurrentValue
);
|
[Java] |
---|
public double getCurrentValue();
public void setCurrentValue(
double
);
|
[Python - STK API ] |
---|
@property
def CurrentValue(self) -> float:
@CurrentValue.setter
def CurrentValue(self, CurrentValue:float) -> None:
|
See Also