Description
The absolute increment value which creates a interval by expanding (or shortening if negative) the original interval by shifting its start/stop times equally by half of specified increment value.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property AbsoluteIncrement() As Double
|
[C#] |
---|
public double AbsoluteIncrement {get; set;}
|
[Managed C++] |
---|
public: __property double get_AbsoluteIncrement(); public: __property void set_AbsoluteIncrement(
double
);
|
[Unmanaged C++] |
---|
public: HRESULT get_AbsoluteIncrement(
double * pRetVal
);
public: HRESULT put_AbsoluteIncrement(
double AbsoluteIncrement
);
|
[Java] |
---|
public double getAbsoluteIncrement();
public void setAbsoluteIncrement(
double
);
|
[Python - STK API] |
---|
@property
def AbsoluteIncrement(self) -> float:
@AbsoluteIncrement.setter
def AbsoluteIncrement(self, AbsoluteIncrement:float) -> None:
|
See Also