Description
Gets or sets whether sunshine is rendered by the Sun central body. Sunshine renders a halo effect around the sun when it is viewed in the scene.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property ShowSunshine() As Boolean
|
| [C#] |
|---|
public bool ShowSunshine {get; set;}
|
| [Managed C++] |
|---|
public: __property bool get_ShowSunshine(); public: __property void set_ShowSunshine(
bool
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_ShowSunshine(
VARIANT_BOOL * pRetVal
);
public: HRESULT put_ShowSunshine(
VARIANT_BOOL ShowSunshine
);
|
| [Java] |
|---|
public bool getShowSunshine();
public void setShowSunshine(
bool
);
|
| [Python - STK API] |
|---|
@property
def ShowSunshine(self) -> bool:
@ShowSunshine.setter
def ShowSunshine(self, ShowSunshine:bool) -> None:
|
See Also