Description
Get the interpolation order, which determines the order of interpolation polynomial and is related to how many samples are used during interpolation. See STK help on interpolation for further details.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property Order() As Integer
|
[C#] |
---|
public int Order {get; set;}
|
[Managed C++] |
---|
public: __property int get_Order(); public: __property void set_Order( int );
|
[Unmanaged C++] |
---|
public: HRESULT get_Order( int * pRetVal ); public: HRESULT put_Order( int NewOrder );
|
[Java] |
---|
public ppInteger getOrder();public void setOrder( ppInteger );
|
See Also