Description
Enable Center Burn - this property is only available for use with a duration stopping condition. If selected, you are setting the maneuver to start half the time before the previous segment ended. This option is useful for ensuring that a finite maneuver seeded from an impulsive maneuver is accurately modeled.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property EnableCenterBurn() As Boolean
|
[C#] |
---|
public bool EnableCenterBurn {get; set;}
|
[Managed C++] |
---|
public: __property bool get_EnableCenterBurn(); public: __property void set_EnableCenterBurn(
bool
);
|
[Unmanaged C++] |
---|
public: HRESULT get_EnableCenterBurn(
VARIANT_BOOL * pVal
);
public: HRESULT put_EnableCenterBurn(
VARIANT_BOOL newVal
);
|
[Java] |
---|
public bool getEnableCenterBurn();
public void setEnableCenterBurn(
bool
);
|
[Python - STK API] |
---|
@property
def EnableCenterBurn(self) -> bool:
@EnableCenterBurn.setter
def EnableCenterBurn(self, newVal:bool) -> None:
|
See Also