Description
The total surface area of the wing.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property WingArea() As Double
|
| [C#] |
|---|
public double WingArea {get; set;}
|
| [Managed C++] |
|---|
public: __property double get_WingArea(); public: __property void set_WingArea(
double
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_WingArea(
double * pVal
);
public: HRESULT put_WingArea(
double newVal
);
|
| [Java] |
|---|
public double getWingArea();
public void setWingArea(
double
);
|
| [Python - STK API] |
|---|
@property
def WingArea(self) -> float:
@WingArea.setter
def WingArea(self, newVal:float) -> None:
|
See Also