AutomaticSequenceCollection#

class ansys.stk.core.stkobjects.astrogator.AutomaticSequenceCollection#

Automatic Sequence Collection.

Overview#

item

Return the given automatic sequence.

add

Create a new sequence.

remove

Remove a sequence.

get_item_by_index

Retrieve the given automatic sequence found by the index.

get_item_by_name

Retrieve the given automatic sequence found by the name.

_new_enum

Allow you to enumerate through the collection.

count

Get the size of the collection.

Import detail#

from ansys.stk.core.stkobjects.astrogator import AutomaticSequenceCollection

Property detail#

property AutomaticSequenceCollection._new_enum: EnumeratorProxy#

Allow you to enumerate through the collection.

property AutomaticSequenceCollection.count: int#

Get the size of the collection.

Method detail#

AutomaticSequenceCollection.item(self, index_or_name: Any) AutomaticSequence#

Return the given automatic sequence.

Parameters:

index_or_name : Any

Returns:

AutomaticSequence

AutomaticSequenceCollection.add(self, name: str) AutomaticSequence#

Create a new sequence.

Parameters:

name : str

Returns:

AutomaticSequence

AutomaticSequenceCollection.remove(self, index_or_name: Any) None#

Remove a sequence.

Parameters:

index_or_name : Any

Returns:

None

AutomaticSequenceCollection.get_item_by_index(self, index: int) AutomaticSequence#

Retrieve the given automatic sequence found by the index.

Parameters:

index : int

Returns:

AutomaticSequence

AutomaticSequenceCollection.get_item_by_name(self, name: str) AutomaticSequence#

Retrieve the given automatic sequence found by the name.

Parameters:

name : str

Returns:

AutomaticSequence