Description
The area of the lifting surface of the aircraft.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property TakeoffLandingRefArea() As Double
|
| [C#] |
|---|
public double TakeoffLandingRefArea {get; set;}
|
| [Managed C++] |
|---|
public: __property double get_TakeoffLandingRefArea(); public: __property void set_TakeoffLandingRefArea(
double
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_TakeoffLandingRefArea(
double * pVal
);
public: HRESULT put_TakeoffLandingRefArea(
double pVal
);
|
| [Java] |
|---|
public double getTakeoffLandingRefArea();
public void setTakeoffLandingRefArea(
double
);
|
| [Python - STK API] |
|---|
@property
def TakeoffLandingRefArea(self) -> float:
@TakeoffLandingRefArea.setter
def TakeoffLandingRefArea(self, pVal:float) -> None:
|
See Also