Description
Gets or sets the granularity used when interpolating with
Interpolate. Lower granularities are more precise but create more positions.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property Granularity() As Double
|
| [C#] |
|---|
public double Granularity {get; set;}
|
| [Managed C++] |
|---|
public: __property double get_Granularity(); public: __property void set_Granularity(
double
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_Granularity(
double * pRetVal
);
public: HRESULT put_Granularity(
double Granularity
);
|
| [Java] |
|---|
public double getGranularity();
public void setGranularity(
double
);
|
[Python - STK API ] |
|---|
@property
def Granularity(self) -> float:
@Granularity.setter
def Granularity(self, Granularity:float) -> None:
|
See Also