Description
The maximum power/thrust depending on the propulsion mode.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property MaxPowerThrust() As Double
|
| [C#] |
|---|
public double MaxPowerThrust {get; set;}
|
| [Managed C++] |
|---|
public: __property double get_MaxPowerThrust(); public: __property void set_MaxPowerThrust(
double
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_MaxPowerThrust(
double * pVal
);
public: HRESULT put_MaxPowerThrust(
double pVal
);
|
| [Java] |
|---|
public double getMaxPowerThrust();
public void setMaxPowerThrust(
double
);
|
| [Python - STK API] |
|---|
@property
def MaxPowerThrust(self) -> float:
@MaxPowerThrust.setter
def MaxPowerThrust(self, pVal:float) -> None:
|
See Also