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