Description
The coordinate system within which the element is defined.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property CoordSystemName() As String
|
[C#] |
---|
public string CoordSystemName {get; set;}
|
[Managed C++] |
---|
public: __property String __gc ^ get_CoordSystemName(); public: __property void set_CoordSystemName(
String __gc ^
);
|
[Unmanaged C++] |
---|
public: HRESULT get_CoordSystemName(
BSTR * pVal
);
public: HRESULT put_CoordSystemName(
BSTR InVal
);
|
[Java] |
---|
public String getCoordSystemName();
public void setCoordSystemName(
String
);
|
[Python - STK API] |
---|
@property
def CoordSystemName(self) -> str:
@CoordSystemName.setter
def CoordSystemName(self, InVal:str) -> None:
|
See Also