Description
The option to store intermediate results for aerodynamics calculations.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property CacheAeroData() As Boolean
|
| [C#] |
|---|
public bool CacheAeroData {get; set;}
|
| [Managed C++] |
|---|
public: __property bool get_CacheAeroData(); public: __property void set_CacheAeroData(
bool
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_CacheAeroData(
VARIANT_BOOL * pVal
);
public: HRESULT put_CacheAeroData(
VARIANT_BOOL newVal
);
|
| [Java] |
|---|
public bool getCacheAeroData();
public void setCacheAeroData(
bool
);
|
| [Python - STK API] |
|---|
@property
def CacheAeroData(self) -> bool:
@CacheAeroData.setter
def CacheAeroData(self, newVal:bool) -> None:
|
See Also