Description
The option to limit the maximum speed of the aircraft so the specified temperature is not exceeded.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property UseMaxTemperatureLimit() As Boolean
|
| [C#] |
|---|
public bool UseMaxTemperatureLimit {get; set;}
|
| [Managed C++] |
|---|
public: __property bool get_UseMaxTemperatureLimit(); public: __property void set_UseMaxTemperatureLimit(
bool
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_UseMaxTemperatureLimit(
VARIANT_BOOL * pVal
);
public: HRESULT put_UseMaxTemperatureLimit(
VARIANT_BOOL newVal
);
|
| [Java] |
|---|
public bool getUseMaxTemperatureLimit();
public void setUseMaxTemperatureLimit(
bool
);
|
| [Python - STK API] |
|---|
@property
def UseMaxTemperatureLimit(self) -> bool:
@UseMaxTemperatureLimit.setter
def UseMaxTemperatureLimit(self, newVal:bool) -> None:
|
See Also