Description
The rate at which the aircraft can translate while hovering.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property TranslationRate() As Double
|
| [C#] |
|---|
public double TranslationRate {get; set;}
|
| [Managed C++] |
|---|
public: __property double get_TranslationRate(); public: __property void set_TranslationRate(
double
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_TranslationRate(
double * pVal
);
public: HRESULT put_TranslationRate(
double newVal
);
|
| [Java] |
|---|
public double getTranslationRate();
public void setTranslationRate(
double
);
|
| [Python - STK API] |
|---|
@property
def TranslationRate(self) -> float:
@TranslationRate.setter
def TranslationRate(self, newVal:float) -> None:
|
See Also