Description
The number of tails on the missile.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property TailCount() As Integer
|
| [C#] |
|---|
public int TailCount {get; set;}
|
| [Managed C++] |
|---|
public: __property int get_TailCount(); public: __property void set_TailCount(
int
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_TailCount(
long * pVal
);
public: HRESULT put_TailCount(
long newVal
);
|
| [Java] |
|---|
public int getTailCount();
public void setTailCount(
int
);
|
| [Python - STK API] |
|---|
@property
def TailCount(self) -> int:
@TailCount.setter
def TailCount(self, newVal:int) -> None:
|
See Also