VehicleTargetPointingIntervalCollection#

class ansys.stk.core.stkobjects.VehicleTargetPointingIntervalCollection#

Represents a collection of scheduled targeting intervals.

Overview#

item

Given an index, returns an element in the collection.

remove_at

Remove an element from the collection using specified index.

remove_all

Remove all elements from the collection.

add

Add a new element to the collection. Start/Stop Times use DateFormat Dimension.

count

Return the number of elements in a collection.

_new_enum

Return an enumerator that can iterate through the collection.

Import detail#

from ansys.stk.core.stkobjects import VehicleTargetPointingIntervalCollection

Property detail#

property VehicleTargetPointingIntervalCollection.count: int#

Return the number of elements in a collection.

property VehicleTargetPointingIntervalCollection._new_enum: EnumeratorProxy#

Return an enumerator that can iterate through the collection.

Method detail#

VehicleTargetPointingIntervalCollection.item(self, index: int) AttitudeScheduleTimesElement#

Given an index, returns an element in the collection.

Parameters:

index : int

Returns:

AttitudeScheduleTimesElement

VehicleTargetPointingIntervalCollection.remove_at(self, index: int) None#

Remove an element from the collection using specified index.

Parameters:

index : int

Returns:

None

VehicleTargetPointingIntervalCollection.remove_all(self) None#

Remove all elements from the collection.

Returns:

None

VehicleTargetPointingIntervalCollection.add(self, start_time: Any, stop_time: Any) AttitudeScheduleTimesElement#

Add a new element to the collection. Start/Stop Times use DateFormat Dimension.

Parameters:

start_time : Any

stop_time : Any

Returns:

AttitudeScheduleTimesElement