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