Description
Display the planet's orbit around its parent
object in the 3D graphics window as defined in 2D Graphics for that
planet. For instance, the Moon orbits around the Sun.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
Public Property OrbitVisible() As Boolean
|
[C#] |
public bool OrbitVisible {get; set;}
|
[Managed C++] |
public: __property bool get_OrbitVisible();
public: __property void set_OrbitVisible(
bool
);
|
[Unmanaged C++] |
public: HRESULT get_OrbitVisible(
VARIANT_BOOL * pRetVal
);
public: HRESULT put_OrbitVisible(
VARIANT_BOOL NewOrbitVisible
);
|
[Java] |
public bool getOrbitVisible();public void setOrbitVisible(
bool
);
|
See Also