Description
Gets or sets whether the Central Body is shown or hidden in the
Scene. This only affects the Central Body itself, not the
primitives that are associated with it.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property Show() As Boolean
|
[C#] |
---|
public bool Show {get; set;}
|
[Managed C++] |
---|
public: __property bool get_Show(); public: __property void set_Show(
bool
);
|
[Unmanaged C++] |
---|
public: HRESULT get_Show(
VARIANT_BOOL * pRetVal
);
public: HRESULT put_Show(
VARIANT_BOOL Show
);
|
[Java] |
---|
public bool getShow();
public void setShow(
bool
);
|
[Python - STK API ] |
---|
@property
def Show(self) -> bool:
@Show.setter
def Show(self, Show:bool) -> None:
|
See Also