Propagator11ParametersDescriptorCollection#

class ansys.stk.core.stkobjects.Propagator11ParametersDescriptorCollection#

A collection of 11-Parameter files.

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.

add_from_array

Add multiple files 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 Propagator11ParametersDescriptorCollection

Property detail#

property Propagator11ParametersDescriptorCollection.count: int#

Return the number of elements in a collection.

property Propagator11ParametersDescriptorCollection._new_enum: EnumeratorProxy#

Return an enumerator that can iterate through the collection.

Method detail#

Propagator11ParametersDescriptorCollection.item(self, index: int) Propagator11ParametersDescriptor#

Given an index, returns an element in the collection.

Parameters:

index : int

Returns:

Propagator11ParametersDescriptor

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

Remove an element from the collection using specified index.

Parameters:

index : int

Returns:

None

Propagator11ParametersDescriptorCollection.remove_all(self) None#

Remove all elements from the collection.

Returns:

None

Propagator11ParametersDescriptorCollection.add(self, file_path: str) Propagator11ParametersDescriptor#

Add a new element to the collection.

Parameters:

file_path : str

Returns:

Propagator11ParametersDescriptor

Propagator11ParametersDescriptorCollection.add_from_array(self, array_of_files: list) None#

Add multiple files to the collection.

Parameters:

array_of_files : list

Returns:

None