Defines a collection of TimeIntervals defined by MinimumTime and MaximumTime in Epoch Seconds, one for each point in the Polyline.
[Visual Basic .NET] |
---|
Public Sub SetTimeIntervals( _ ByVal TimeIntervals As System.Array _ ) |
[C#] |
---|
public void SetTimeIntervals( System.Array TimeIntervals ); |
[Managed C++] |
---|
public: void SetTimeIntervals( System::Array ^ TimeIntervals ); |
[Unmanaged C++] |
---|
public: HRESULT SetTimeIntervals( SAFEARRAY * * TimeIntervals ); |
[Java] |
---|
public void setTimeIntervals( AgSafeArray TimeIntervals ); |
[Python - STK API ] |
---|
def SetTimeIntervals(self, TimeIntervals:list) -> None: |
- TimeIntervals
- The
TimeInterval
s for each line segment in the polyline. There must be pair of MinimumTime/MaximumTime for each position passed to the Polyline Primitive'sSet
method. TimeIntervals are only accepted if Polyline Type isLines
.