Description
Location of the terrain contained in the terrain data file.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property Location() As String
|
[C#] |
---|
public string Location {get; set;}
|
[Managed C++] |
---|
public: __property String __gc ^ get_Location(); public: __property void set_Location(
String __gc ^
);
|
[Unmanaged C++] |
---|
public: HRESULT get_Location(
BSTR * pVal
);
public: HRESULT put_Location(
BSTR pVal
);
|
[Java] |
---|
public String getLocation();
public void setLocation(
String
);
|
[Python - STK API] |
---|
@property
def Location(self) -> str:
@Location.setter
def Location(self, pVal:str) -> None:
|
See Also