Description
The parent of this central body.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property ParentName() As String
|
[C#] |
---|
public string ParentName {get; set;}
|
[Managed C++] |
---|
public: __property String __gc ^ get_ParentName(); public: __property void set_ParentName(
String __gc ^
);
|
[Unmanaged C++] |
---|
public: HRESULT get_ParentName(
BSTR * pVal
);
public: HRESULT put_ParentName(
BSTR newVal
);
|
[Java] |
---|
public String getParentName();
public void setParentName(
String
);
|
[Python - STK API] |
---|
@property
def ParentName(self) -> str:
@ParentName.setter
def ParentName(self, newVal:str) -> None:
|
See Also