VehicleConsiderAnalysisCollection#

class ansys.stk.core.stkobjects.VehicleConsiderAnalysisCollection#

The Consider Analysis list for HPOP covariance.

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.

remove_by_type

Remove an element from the collection using the VehicleConsiderAnalysisType type.

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 VehicleConsiderAnalysisCollection

Property detail#

property VehicleConsiderAnalysisCollection.count: int#

Return the number of elements in a collection.

property VehicleConsiderAnalysisCollection._new_enum: EnumeratorProxy#

Return an enumerator that can iterate through the collection.

Method detail#

VehicleConsiderAnalysisCollection.item(self, index: int) VehicleConsiderAnalysisCollectionElement#

Given an index, returns an element in the collection.

Parameters:

index : int

Returns:

VehicleConsiderAnalysisCollectionElement

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

Remove an element from the collection using specified index.

Parameters:

index : int

Returns:

None

VehicleConsiderAnalysisCollection.remove_all(self) None#

Remove all elements from the collection.

Returns:

None

VehicleConsiderAnalysisCollection.add(self, param_type: VehicleConsiderAnalysisType) VehicleConsiderAnalysisCollectionElement#

Add a new element to the collection.

Parameters:

param_type : VehicleConsiderAnalysisType

Returns:

VehicleConsiderAnalysisCollectionElement

VehicleConsiderAnalysisCollection.remove_by_type(self, param_type: VehicleConsiderAnalysisType) None#

Remove an element from the collection using the VehicleConsiderAnalysisType type.

Parameters:

param_type : VehicleConsiderAnalysisType

Returns:

None