Description
The downrange distance of the spacecraft from launch at burnout. Uses Distance Dimension.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property DownRangeDist() As Double
|
| [C#] |
|---|
public double DownRangeDist {get; set;}
|
| [Managed C++] |
|---|
public: __property double get_DownRangeDist(); public: __property void set_DownRangeDist(
double
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_DownRangeDist(
double * pVal
);
public: HRESULT put_DownRangeDist(
double newVal
);
|
| [Java] |
|---|
public double getDownRangeDist();
public void setDownRangeDist(
double
);
|
| [Python - STK API] |
|---|
@property
def DownRangeDist(self) -> float:
@DownRangeDist.setter
def DownRangeDist(self, newVal:float) -> None:
|
See Also