Description
The amount of time before the spacecraft's launch that it will be created in the scenario. The vehicle will remain at the launch position until beginning of the launch epoch. Uses Time Dimension.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property PreLaunchTime() As Double
|
[C#] |
---|
public double PreLaunchTime {get; set;}
|
[Managed C++] |
---|
public: __property double get_PreLaunchTime(); public: __property void set_PreLaunchTime(
double
);
|
[Unmanaged C++] |
---|
public: HRESULT get_PreLaunchTime(
double * pVal
);
public: HRESULT put_PreLaunchTime(
double newVal
);
|
[Java] |
---|
public double getPreLaunchTime();
public void setPreLaunchTime(
double
);
|
[Python - STK API] |
---|
@property
def PreLaunchTime(self) -> float:
@PreLaunchTime.setter
def PreLaunchTime(self, newVal:float) -> None:
|
See Also