Description
The maximum propagation time, after which the segment will end regardless of whether the stopping conditions have been satisfied. Uses Time Dimension.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property MaxPropagationTime() As Double
|
| [C#] |
|---|
public double MaxPropagationTime {get; set;}
|
| [Managed C++] |
|---|
public: __property double get_MaxPropagationTime(); public: __property void set_MaxPropagationTime(
double
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_MaxPropagationTime(
double * pVal
);
public: HRESULT put_MaxPropagationTime(
double newVal
);
|
| [Java] |
|---|
public double getMaxPropagationTime();
public void setMaxPropagationTime(
double
);
|
| [Python - STK API] |
|---|
@property
def MaxPropagationTime(self) -> float:
@MaxPropagationTime.setter
def MaxPropagationTime(self, newVal:float) -> None:
|
See Also