Description
The initial fuel state of the fuel tank.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property InitialFuelState() As Double
|
| [C#] |
|---|
public double InitialFuelState {get; set;}
|
| [Managed C++] |
|---|
public: __property double get_InitialFuelState(); public: __property void set_InitialFuelState(
double
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_InitialFuelState(
double * pVal
);
public: HRESULT put_InitialFuelState(
double newVal
);
|
| [Java] |
|---|
public double getInitialFuelState();
public void setInitialFuelState(
double
);
|
| [Python - STK API] |
|---|
@property
def InitialFuelState(self) -> float:
@InitialFuelState.setter
def InitialFuelState(self, newVal:float) -> None:
|
See Also