Description
The maximum power of the engine.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property MaxPower() As Double
|
| [C#] |
|---|
public double MaxPower {get; set;}
|
| [Managed C++] |
|---|
public: __property double get_MaxPower(); public: __property void set_MaxPower(
double
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_MaxPower(
double * pVal
);
public: HRESULT put_MaxPower(
double newVal
);
|
| [Java] |
|---|
public double getMaxPower();
public void setMaxPower(
double
);
|
| [Python - STK API] |
|---|
@property
def MaxPower(self) -> float:
@MaxPower.setter
def MaxPower(self, newVal:float) -> None:
|
See Also