Description
The lift fraction of the wing.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property WingLiftFraction() As Double
|
| [C#] |
|---|
public double WingLiftFraction {get; set;}
|
| [Managed C++] |
|---|
public: __property double get_WingLiftFraction(); public: __property void set_WingLiftFraction(
double
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_WingLiftFraction(
double * pVal
);
public: HRESULT put_WingLiftFraction(
double newVal
);
|
| [Java] |
|---|
public double getWingLiftFraction();
public void setWingLiftFraction(
double
);
|
| [Python - STK API] |
|---|
@property
def WingLiftFraction(self) -> float:
@WingLiftFraction.setter
def WingLiftFraction(self, newVal:float) -> None:
|
See Also