Description
The thrust design point of the engine.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property DesignThrust() As Double
|
| [C#] |
|---|
public double DesignThrust {get; set;}
|
| [Managed C++] |
|---|
public: __property double get_DesignThrust(); public: __property void set_DesignThrust(
double
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_DesignThrust(
double * pVal
);
public: HRESULT put_DesignThrust(
double newVal
);
|
| [Java] |
|---|
public double getDesignThrust();
public void setDesignThrust(
double
);
|
| [Python - STK API] |
|---|
@property
def DesignThrust(self) -> float:
@DesignThrust.setter
def DesignThrust(self, newVal:float) -> None:
|
See Also