Description
The rate at which the aircraft slows down at minimum throttle setting.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property MinThrustDecel() As Double
|
| [C#] |
|---|
public double MinThrustDecel {get; set;}
|
| [Managed C++] |
|---|
public: __property double get_MinThrustDecel(); public: __property void set_MinThrustDecel(
double
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_MinThrustDecel(
double * pVal
);
public: HRESULT put_MinThrustDecel(
double pVal
);
|
| [Java] |
|---|
public double getMinThrustDecel();
public void setMinThrustDecel(
double
);
|
| [Python - STK API] |
|---|
@property
def MinThrustDecel(self) -> float:
@MinThrustDecel.setter
def MinThrustDecel(self, pVal:float) -> None:
|
See Also