VehicleConsiderAnalysisCollection#
- class ansys.stk.core.stkobjects.VehicleConsiderAnalysisCollection#
The Consider Analysis list for HPOP covariance.
Overview#
Given an index, returns an element in the collection. |
|
Remove an element from the collection using specified index. |
|
Remove all elements from the collection. |
|
Add a new element to the collection. |
|
Remove an element from the collection using the VehicleConsiderAnalysisType type. |
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.
- VehicleConsiderAnalysisCollection.remove_all(self) None #
Remove all elements from the collection.
- Returns:
- 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: