Description
The aircraft's vertical rate.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property VerticalRate() As Double
|
| [C#] |
|---|
public double VerticalRate {get; set;}
|
| [Managed C++] |
|---|
public: __property double get_VerticalRate(); public: __property void set_VerticalRate(
double
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_VerticalRate(
double * pVal
);
public: HRESULT put_VerticalRate(
double newVal
);
|
| [Java] |
|---|
public double getVerticalRate();
public void setVerticalRate(
double
);
|
| [Python - STK API] |
|---|
@property
def VerticalRate(self) -> float:
@VerticalRate.setter
def VerticalRate(self, newVal:float) -> None:
|
See Also