Description
Gets or sets whether a label with the name of the central body should be rendered in the scene when the camera is at certain distance away from the central body.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property ShowLabel() As Boolean
|
[C#] |
---|
public bool ShowLabel {get; set;}
|
[Managed C++] |
---|
public: __property bool get_ShowLabel(); public: __property void set_ShowLabel(
bool
);
|
[Unmanaged C++] |
---|
public: HRESULT get_ShowLabel(
VARIANT_BOOL * pRetVal
);
public: HRESULT put_ShowLabel(
VARIANT_BOOL ShowLabel
);
|
[Java] |
---|
public bool getShowLabel();
public void setShowLabel(
bool
);
|
[Python - STK API] |
---|
@property
def ShowLabel(self) -> bool:
@ShowLabel.setter
def ShowLabel(self, ShowLabel:bool) -> None:
|
See Also