Description
The consumption order of the fuel tank.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property ConsumptionOrder() As Integer
|
| [C#] |
|---|
public int ConsumptionOrder {get; set;}
|
| [Managed C++] |
|---|
public: __property int get_ConsumptionOrder(); public: __property void set_ConsumptionOrder(
int
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_ConsumptionOrder(
long * pVal
);
public: HRESULT put_ConsumptionOrder(
long newVal
);
|
| [Java] |
|---|
public int getConsumptionOrder();
public void setConsumptionOrder(
int
);
|
| [Python - STK API] |
|---|
@property
def ConsumptionOrder(self) -> int:
@ConsumptionOrder.setter
def ConsumptionOrder(self, newVal:int) -> None:
|
See Also