Description
Flag controls whether spatial calculation is used.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property UseSpatialCalculation() As Boolean
|
| [C#] |
|---|
public bool UseSpatialCalculation {get; set;}
|
| [Managed C++] |
|---|
public: __property bool get_UseSpatialCalculation(); public: __property void set_UseSpatialCalculation(
bool
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_UseSpatialCalculation(
VARIANT_BOOL * pVal
);
public: HRESULT put_UseSpatialCalculation(
VARIANT_BOOL UseSpatialCalculation
);
|
| [Java] |
|---|
public bool getUseSpatialCalculation();
public void setUseSpatialCalculation(
bool
);
|
| [Python - STK API] |
|---|
@property
def UseSpatialCalculation(self) -> bool:
@UseSpatialCalculation.setter
def UseSpatialCalculation(self, UseSpatialCalculation:bool) -> None:
|
See Also