Description
Whether or not to enforce the minimum step.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property UseMinStep() As Boolean
|
| [C#] |
|---|
public bool UseMinStep {get; set;}
|
| [Managed C++] |
|---|
public: __property bool get_UseMinStep(); public: __property void set_UseMinStep(
bool
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_UseMinStep(
VARIANT_BOOL * pVal
);
public: HRESULT put_UseMinStep(
VARIANT_BOOL InVal
);
|
| [Java] |
|---|
public bool getUseMinStep();
public void setUseMinStep(
bool
);
|
| [Python - STK API] |
|---|
@property
def UseMinStep(self) -> bool:
@UseMinStep.setter
def UseMinStep(self, InVal:bool) -> None:
|
See Also