Description
The maximum altitude at which the aircraft is capable of hovering.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property MaxHoverAltitude() As Double
|
| [C#] |
|---|
public double MaxHoverAltitude {get; set;}
|
| [Managed C++] |
|---|
public: __property double get_MaxHoverAltitude(); public: __property void set_MaxHoverAltitude(
double
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_MaxHoverAltitude(
double * pVal
);
public: HRESULT put_MaxHoverAltitude(
double newVal
);
|
| [Java] |
|---|
public double getMaxHoverAltitude();
public void setMaxHoverAltitude(
double
);
|
| [Python - STK API] |
|---|
@property
def MaxHoverAltitude(self) -> float:
@MaxHoverAltitude.setter
def MaxHoverAltitude(self, newVal:float) -> None:
|
See Also