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