Description
The percentage of available thrust to use (100 is full on, 0 is off). Dimensionless.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property PercentThrottle() As Double
|
[C#] |
---|
public double PercentThrottle {get; set;}
|
[Managed C++] |
---|
public: __property double get_PercentThrottle(); public: __property void set_PercentThrottle(
double
);
|
[Unmanaged C++] |
---|
public: HRESULT get_PercentThrottle(
double * pVal
);
public: HRESULT put_PercentThrottle(
double InVal
);
|
[Java] |
---|
public double getPercentThrottle();
public void setPercentThrottle(
double
);
|
[Python - STK API] |
---|
@property
def PercentThrottle(self) -> float:
@PercentThrottle.setter
def PercentThrottle(self, InVal:float) -> None:
|
See Also