Description
The altitude of the spacecraft at burnout. Uses Distance Dimension.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property AltitudeRadius() As Double
|
[C#] |
---|
public double AltitudeRadius {get; set;}
|
[Managed C++] |
---|
public: __property double get_AltitudeRadius(); public: __property void set_AltitudeRadius(
double
);
|
[Unmanaged C++] |
---|
public: HRESULT get_AltitudeRadius(
double * pVal
);
public: HRESULT put_AltitudeRadius(
double newVal
);
|
[Java] |
---|
public double getAltitudeRadius();
public void setAltitudeRadius(
double
);
|
[Python - STK API] |
---|
@property
def AltitudeRadius(self) -> float:
@AltitudeRadius.setter
def AltitudeRadius(self, newVal:float) -> None:
|
See Also