Description
Opt whether to use lunar gravity.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property UseLunarGravity() As Boolean
|
[C#] |
---|
public bool UseLunarGravity {get; set;}
|
[Managed C++] |
---|
public: __property bool get_UseLunarGravity(); public: __property void set_UseLunarGravity(
bool
);
|
[Unmanaged C++] |
---|
public: HRESULT get_UseLunarGravity(
VARIANT_BOOL * pVal
);
public: HRESULT put_UseLunarGravity(
VARIANT_BOOL UseLunarGravity
);
|
[Java] |
---|
public bool getUseLunarGravity();
public void setUseLunarGravity(
bool
);
|
[Python - STK API] |
---|
@property
def UseLunarGravity(self) -> bool:
@UseLunarGravity.setter
def UseLunarGravity(self, UseLunarGravity:bool) -> None:
|
See Also