Description
The area of one of the missile's wings.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property WingSurfaceArea() As Double
|
| [C#] |
|---|
public double WingSurfaceArea {get; set;}
|
| [Managed C++] |
|---|
public: __property double get_WingSurfaceArea(); public: __property void set_WingSurfaceArea(
double
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_WingSurfaceArea(
double * pVal
);
public: HRESULT put_WingSurfaceArea(
double newVal
);
|
| [Java] |
|---|
public double getWingSurfaceArea();
public void setWingSurfaceArea(
double
);
|
| [Python - STK API] |
|---|
@property
def WingSurfaceArea(self) -> float:
@WingSurfaceArea.setter
def WingSurfaceArea(self, newVal:float) -> None:
|
See Also