Description
The maximum static thrust of the engine at sea level.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property MaxSeaLevelStaticThrust() As Double
|
| [C#] |
|---|
public double MaxSeaLevelStaticThrust {get; set;}
|
| [Managed C++] |
|---|
public: __property double get_MaxSeaLevelStaticThrust(); public: __property void set_MaxSeaLevelStaticThrust(
double
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_MaxSeaLevelStaticThrust(
double * pVal
);
public: HRESULT put_MaxSeaLevelStaticThrust(
double newVal
);
|
| [Java] |
|---|
public double getMaxSeaLevelStaticThrust();
public void setMaxSeaLevelStaticThrust(
double
);
|
| [Python - STK API] |
|---|
@property
def MaxSeaLevelStaticThrust(self) -> float:
@MaxSeaLevelStaticThrust.setter
def MaxSeaLevelStaticThrust(self, newVal:float) -> None:
|
See Also