Description
The distance used to define grid resolution. Uses Distance Dimension.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property Distance() As Double
|
[C#] |
---|
public double Distance {get; set;}
|
[Managed C++] |
---|
public: __property double get_Distance(); public: __property void set_Distance(
double
);
|
[Unmanaged C++] |
---|
public: HRESULT get_Distance(
double * pVal
);
public: HRESULT put_Distance(
double Distance
);
|
[Java] |
---|
public double getDistance();
public void setDistance(
double
);
|
[Python - STK API] |
---|
@property
def Distance(self) -> float:
@Distance.setter
def Distance(self, Distance:float) -> None:
|
See Also