Description
The empty weight of the fuel tank.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property EmptyWeight() As Double
|
| [C#] |
|---|
public double EmptyWeight {get; set;}
|
| [Managed C++] |
|---|
public: __property double get_EmptyWeight(); public: __property void set_EmptyWeight(
double
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_EmptyWeight(
double * pRetVal
);
public: HRESULT put_EmptyWeight(
double newVal
);
|
| [Java] |
|---|
public double getEmptyWeight();
public void setEmptyWeight(
double
);
|
| [Python - STK API] |
|---|
@property
def EmptyWeight(self) -> float:
@EmptyWeight.setter
def EmptyWeight(self, newVal:float) -> None:
|
See Also