Description
Specify whether to use absolute or relative increment.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property UseAbsoluteIncrement() As Boolean
|
[C#] |
---|
public bool UseAbsoluteIncrement {get; set;}
|
[Managed C++] |
---|
public: __property bool get_UseAbsoluteIncrement(); public: __property void set_UseAbsoluteIncrement(
bool
);
|
[Unmanaged C++] |
---|
public: HRESULT get_UseAbsoluteIncrement(
VARIANT_BOOL * pRetVal
);
public: HRESULT put_UseAbsoluteIncrement(
VARIANT_BOOL UseAbsoluteIncrement
);
|
[Java] |
---|
public bool getUseAbsoluteIncrement();
public void setUseAbsoluteIncrement(
bool
);
|
[Python - STK API] |
---|
@property
def UseAbsoluteIncrement(self) -> bool:
@UseAbsoluteIncrement.setter
def UseAbsoluteIncrement(self, UseAbsoluteIncrement:bool) -> None:
|
See Also