Description
The absolute increment value which creates a new interval list by expanding (or shortening if negative) every interval in the original interval list by shifting interval's 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
);
|
See Also