Description
The maximum equivalent airspeed of the aircraft.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property MaxEAS() As Double
|
| [C#] |
|---|
public double MaxEAS {get; set;}
|
| [Managed C++] |
|---|
public: __property double get_MaxEAS(); public: __property void set_MaxEAS(
double
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_MaxEAS(
double * pVal
);
public: HRESULT put_MaxEAS(
double newVal
);
|
| [Java] |
|---|
public double getMaxEAS();
public void setMaxEAS(
double
);
|
| [Python - STK API] |
|---|
@property
def MaxEAS(self) -> float:
@MaxEAS.setter
def MaxEAS(self, newVal:float) -> None:
|
See Also