Description
If true, a maximum value will be enforced for the parameter value
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property UseMaxValue() As Boolean
|
| [C#] |
|---|
public bool UseMaxValue {get; set;}
|
| [Managed C++] |
|---|
public: __property bool get_UseMaxValue(); public: __property void set_UseMaxValue(
bool
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_UseMaxValue(
VARIANT_BOOL * pVal
);
public: HRESULT put_UseMaxValue(
VARIANT_BOOL InVal
);
|
| [Java] |
|---|
public bool getUseMaxValue();
public void setUseMaxValue(
bool
);
|
| [Python - STK API] |
|---|
@property
def UseMaxValue(self) -> bool:
@UseMaxValue.setter
def UseMaxValue(self, InVal:bool) -> None:
|
See Also