Description
Opt whether to use the afterburner if it is possible.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property UseAfterburner() As Boolean
|
| [C#] |
|---|
public bool UseAfterburner {get; set;}
|
| [Managed C++] |
|---|
public: __property bool get_UseAfterburner(); public: __property void set_UseAfterburner(
bool
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_UseAfterburner(
VARIANT_BOOL * pVal
);
public: HRESULT put_UseAfterburner(
VARIANT_BOOL newVal
);
|
| [Java] |
|---|
public bool getUseAfterburner();
public void setUseAfterburner(
bool
);
|
| [Python - STK API] |
|---|
@property
def UseAfterburner(self) -> bool:
@UseAfterburner.setter
def UseAfterburner(self, newVal:bool) -> None:
|
See Also