Description
If true, Astrogator will stop targeting if a limit cycle is detected.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property StopOnLimitCycleDetection() As Boolean
|
[C#] |
---|
public bool StopOnLimitCycleDetection {get; set;}
|
[Managed C++] |
---|
public: __property bool get_StopOnLimitCycleDetection(); public: __property void set_StopOnLimitCycleDetection(
bool
);
|
[Unmanaged C++] |
---|
public: HRESULT get_StopOnLimitCycleDetection(
VARIANT_BOOL * pVal
);
public: HRESULT put_StopOnLimitCycleDetection(
VARIANT_BOOL newVal
);
|
[Java] |
---|
public bool getStopOnLimitCycleDetection();
public void setStopOnLimitCycleDetection(
bool
);
|
[Python - STK API] |
---|
@property
def StopOnLimitCycleDetection(self) -> bool:
@StopOnLimitCycleDetection.setter
def StopOnLimitCycleDetection(self, newVal:bool) -> None:
|
See Also