VehicleGraphics2DTimeEventsCollection#

class ansys.stk.core.stkobjects.VehicleGraphics2DTimeEventsCollection#

A satellite’s time events collection.

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.

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 VehicleGraphics2DTimeEventsCollection

Property detail#

property VehicleGraphics2DTimeEventsCollection.count: int#

Return the number of elements in a collection.

property VehicleGraphics2DTimeEventsCollection._new_enum: EnumeratorProxy#

Return an enumerator that can iterate through the collection.

Method detail#

VehicleGraphics2DTimeEventsCollection.item(self, index: int) VehicleGraphics2DTimeEventsElement#

Given an index, returns an element in the collection.

Parameters:

index : int

Returns:

VehicleGraphics2DTimeEventsElement

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

Remove an element from the collection using specified index.

Parameters:

index : int

Returns:

None

VehicleGraphics2DTimeEventsCollection.remove_all(self) None#

Remove all elements from the collection.

Returns:

None

VehicleGraphics2DTimeEventsCollection.add(self) VehicleGraphics2DTimeEventsElement#

Add a new element to the collection.

Returns:

VehicleGraphics2DTimeEventsElement