Description
An interpolation order of 1 specifies linear
interpolation and is appropriate for closely spaced data or data
with significant jitter. Higher interpolation orders yield more
accurate interpolation when the data is smooth and
continuous.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
Public Property InterpolationOrder() As Integer
|
[C#] |
public int InterpolationOrder {get; set;}
|
[Managed C++] |
public: __property int get_InterpolationOrder();
public: __property void set_InterpolationOrder(
int
);
|
[Unmanaged C++] |
public: HRESULT get_InterpolationOrder(
int * pRetVal
);
public: HRESULT put_InterpolationOrder(
int NewInterpolationOrder
);
|
[Java] |
public ppInteger getInterpolationOrder();public void setInterpolationOrder(
ppInteger
);
|
See Also