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