pycatia.mec_mod_interfaces.fix_togethers

Module initially auto generated using V5Automation files from CATIA V5 R28 on 2020-06-11 12:40:47.360445

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.mec_mod_interfaces.fix_togethers.FixTogethers(com_object)

Note

CAA V5 Visual Basic Help (2020-06-11 12:40:47.360445)

System.IUnknown
System.IDispatch
System.CATBaseUnknown
System.CATBaseDispatch
System.Collection
FixTogethers

A collection of all the FixTogether objects contained in the
product.
add() FixTogether

Note

CAA V5 Visual Basic Help (2020-07-06 14:02:20.222384))
o Func Add() As FixTogether

Creates a new FixTogether and adds it to the FixTogethers
collection.

Returns:
The created FixTogether
Example:
The following example creates a FixTogether newFixTogether in the
FixTogether collection.

Set newFixTogether = fixTogethers.Add
Return type:

FixTogether

item(i_index: cat_variant) FixTogether

Note

CAA V5 Visual Basic Help (2020-07-06 14:02:20.222384))
o Func Item(CATVariant iIndex) As FixTogether

Returns a FixTogether using its index or its name from the FixTogethers
collection.

Parameters:

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


AnyObject.Name property.
Returns:
The retrieved FixTogether
Example:
This example retrieves in thisFixTogether the fifth FixTogether in the
collection and in thatFixTogether the FixTogether named MyFixTogether in the
FixTogether collection of the product product.

Set fixTogetherColl = product.FixTogethers
Set thisFixTogether = fixTogetherColl.Item(5)
Set thatFixTogether = fixTogetherColl.Item(“MyFixTogether”)
Parameters:

i_index (cat_variant) –

Return type:

FixTogether

remove(i_index: cat_variant) None

Note

CAA V5 Visual Basic Help (2020-07-06 14:02:20.222384))
o Sub Remove(CATVariant iIndex)

Removes a FixTogether from the FixTogethers collection.

Parameters:

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


AnyObject.Name property.

Example:
This example removes the last FixTogether in the
collection.

fixTogetherColl.Remove(fixTogetherColl.Count)
Parameters:

i_index (cat_variant) –

Return type:

None