Description
Enable Hold Altitude - if true, the spacecraft's attitude is fixed within the hold frame.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property EnableHoldAttitude() As Boolean
|
| [C#] |
|---|
public bool EnableHoldAttitude {get; set;}
|
| [Managed C++] |
|---|
public: __property bool get_EnableHoldAttitude(); public: __property void set_EnableHoldAttitude(
bool
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_EnableHoldAttitude(
VARIANT_BOOL * pVal
);
public: HRESULT put_EnableHoldAttitude(
VARIANT_BOOL newVal
);
|
| [Java] |
|---|
public bool getEnableHoldAttitude();
public void setEnableHoldAttitude(
bool
);
|
| [Python - STK API] |
|---|
@property
def EnableHoldAttitude(self) -> bool:
@EnableHoldAttitude.setter
def EnableHoldAttitude(self, newVal:bool) -> None:
|
See Also