TimeIntervalCollection#
- class ansys.stk.core.stkobjects.TimeIntervalCollection#
Bases:
IDisplayTimesData
,IAccessInterval
Class defining display intervals.
Overview#
Add an interval to the collection and returns the index. Start/Stop use DateFormat Dimension. |
|
Remove an item by the index. |
|
Remove all items in the collection. |
|
Remove an interval using the interval interface. Start/Stop use DateFormat Dimension. |
|
Deconflict display intervals. |
|
Load an interval file. |
|
Update interval with specified start and stop times at a given index. Start/Stop use DateFormat Dimension. |
|
Return start and stop times of the interval at a given index. Start/Stop use DateFormat Dimension. |
|
Return a two-dimensional array of intervals beginning at a given position and having specified number of rows. |
Number of items in the collection. |
Import detail#
from ansys.stk.core.stkobjects import TimeIntervalCollection
Property detail#
Method detail#
- TimeIntervalCollection.add(self, start: Any, stop: Any) int #
Add an interval to the collection and returns the index. Start/Stop use DateFormat Dimension.
- TimeIntervalCollection.remove_interval(self, start: Any, stop: Any) None #
Remove an interval using the interval interface. Start/Stop use DateFormat Dimension.
- TimeIntervalCollection.change_interval(self, index: int, start: Any, stop: Any) None #
Update interval with specified start and stop times at a given index. Start/Stop use DateFormat Dimension.