Description
The number of propellers.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property PropellerCount() As Integer
|
| [C#] |
|---|
public int PropellerCount {get; set;}
|
| [Managed C++] |
|---|
public: __property int get_PropellerCount(); public: __property void set_PropellerCount(
int
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_PropellerCount(
long * pVal
);
public: HRESULT put_PropellerCount(
long newVal
);
|
| [Java] |
|---|
public int getPropellerCount();
public void setPropellerCount(
int
);
|
| [Python - STK API] |
|---|
@property
def PropellerCount(self) -> int:
@PropellerCount.setter
def PropellerCount(self, newVal:int) -> None:
|
See Also