Description
The maximum thrust of the missile.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property MaxThrust() As Double
|
| [C#] |
|---|
public double MaxThrust {get; set;}
|
| [Managed C++] |
|---|
public: __property double get_MaxThrust(); public: __property void set_MaxThrust(
double
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_MaxThrust(
double * pVal
);
public: HRESULT put_MaxThrust(
double pVal
);
|
| [Java] |
|---|
public double getMaxThrust();
public void setMaxThrust(
double
);
|
| [Python - STK API] |
|---|
@property
def MaxThrust(self) -> float:
@MaxThrust.setter
def MaxThrust(self, pVal:float) -> None:
|
See Also