pycatia.analysis_interfaces.analysis_mesh_parts

Module initially auto generated using V5Automation files from CATIA V5 R28 on 2020-09-25 14:34:21.593357

Warning

The notes denoted “CAA V5 Visual Basic Help” are to be used as reference only. They are there as a guide as to how the visual basic / catscript functions work and thus help debugging in pycatia.

class pycatia.analysis_interfaces.analysis_mesh_parts.AnalysisMeshParts(com_object)

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357)

System.IUnknown
System.IDispatch
System.CATBaseUnknown
System.CATBaseDispatch
System.Collection
AnalysisMeshParts

The collection of analysis meshparts.
add(i_type: str) AnalysisMeshPart

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357))
o Func Add(CATBSTR iType) As AnalysisMeshPart

Creates a new meshpart and adds it to the meshpart
collection.
The meshpart will be created linked to the AnalysisMeshManager
object.

Parameters:

iType
The type of mesh part to create.

Returns:
The created meshpart
Parameters:

i_type (str) –

Return type:

AnalysisMeshPart

item(i_index: cat_variant) AnalysisMeshPart

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357))
o Func Item(CATVariant iIndex) As AnalysisMeshPart

Returns a meshpart using its index or its name from the meshpart
collection.

Parameters:

iIndex
The index or the name of the meshpart to retrieve from the
collection of meshparts. As a numeric, this index is the rank of the meshpart
in the collection. The index of the first meshpart in the collection is 1, and
the index of the last meshpart is Count. As a string, it is the name you
assigned to the meshpart using the

AnyObject.Name property.
Returns:
The retrieved meshpart.
Parameters:

i_index (cat_variant) –

Return type:

AnalysisMeshPart

remove(i_index: cat_variant) None

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357))
o Sub Remove(CATVariant iIndex)

Removes a meshpart using its index or its name from the meshpart
collection.

Parameters:

iIndex
The index or the name of the meshpart to retrieve from the
collection of meshpart. As a numeric, this index is the rank of the meshpart in
the collection. The index of the first meshpart in the collection is 1, and the
index of the last meshpart is Count. As a string, it is the name you assigned
to the meshpart using the

AnyObject.Name property.
Parameters:

i_index (cat_variant) –

Return type:

None