Description
The missile body's height.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property BodyHeight() As Double
|
| [C#] |
|---|
public double BodyHeight {get; set;}
|
| [Managed C++] |
|---|
public: __property double get_BodyHeight(); public: __property void set_BodyHeight(
double
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_BodyHeight(
double * pVal
);
public: HRESULT put_BodyHeight(
double newVal
);
|
| [Java] |
|---|
public double getBodyHeight();
public void setBodyHeight(
double
);
|
| [Python - STK API] |
|---|
@property
def BodyHeight(self) -> float:
@BodyHeight.setter
def BodyHeight(self, newVal:float) -> None:
|
See Also