Description
Whether or not to take the absolute value of the calculation.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property UseAbsoluteValue() As Boolean
|
| [C#] |
|---|
public bool UseAbsoluteValue {get; set;}
|
| [Managed C++] |
|---|
public: __property bool get_UseAbsoluteValue(); public: __property void set_UseAbsoluteValue(
bool
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_UseAbsoluteValue(
VARIANT_BOOL * pVal
);
public: HRESULT put_UseAbsoluteValue(
VARIANT_BOOL InVal
);
|
| [Java] |
|---|
public bool getUseAbsoluteValue();
public void setUseAbsoluteValue(
bool
);
|
| [Python - STK API] |
|---|
@property
def UseAbsoluteValue(self) -> bool:
@UseAbsoluteValue.setter
def UseAbsoluteValue(self, InVal:bool) -> None:
|
See Also