PropertyInfoCollection#
- class ansys.stk.core.stkutil.PropertyInfoCollection#
Property Information Collection coclass.
Overview#
Allow the user to iterate through the properties. |
|
Retrieve a property from the collection by index. |
|
Retrieve a property from the collection by name. |
Import detail#
from ansys.stk.core.stkutil import PropertyInfoCollection
Property detail#
- property PropertyInfoCollection._new_enum: EnumeratorProxy#
Enumerates through the properties.
Method detail#
- PropertyInfoCollection.item(self, index_or_name: Any) PropertyInfo #
Allow the user to iterate through the properties.
- Parameters:
index_or_name :
Any
- Returns:
PropertyInfo
- PropertyInfoCollection.get_item_by_index(self, index: int) PropertyInfo #
Retrieve a property from the collection by index.
- Parameters:
index :
int
- Returns:
PropertyInfo
- PropertyInfoCollection.get_item_by_name(self, name: str) PropertyInfo #
Retrieve a property from the collection by name.
- Parameters:
name :
str
- Returns:
PropertyInfo