Description
Minimum Propagation Time - the minimum time that must elapse from the beginning of the segment until Astrogator will begin checking stopping conditions for satisfaction. Uses Time Dimension.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property MinPropagationTime() As Double
|
[C#] |
---|
public double MinPropagationTime {get; set;}
|
[Managed C++] |
---|
public: __property double get_MinPropagationTime(); public: __property void set_MinPropagationTime(
double
);
|
[Unmanaged C++] |
---|
public: HRESULT get_MinPropagationTime(
double * pVal
);
public: HRESULT put_MinPropagationTime(
double newVal
);
|
[Java] |
---|
public double getMinPropagationTime();
public void setMinPropagationTime(
double
);
|
[Python - STK API] |
---|
@property
def MinPropagationTime(self) -> float:
@MinPropagationTime.setter
def MinPropagationTime(self, newVal:float) -> None:
|
See Also