pycatia.in_interfaces.references

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.in_interfaces.references.References(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
References

A collection of all the references aggregated in an object.

See also:
Reference
item(i_index: cat_variant) Reference

Note

CAA V5 Visual Basic Help (2020-06-11 12:40:47.360445))
o Func Item(CATVariant iIndex) As Reference

Returns a reference using its index or its name from the References
collection.

Parameters:

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

AnyObject.Name property.
Returns:
The retrieved reference
Example:
This example retrieves the last item in the RefList reference
collection by means of the Count property.

Dim LastRef As Reference
Set LastRef = RefList.Item(RefList.Count)
Parameters:

i_index (cat_variant) –

Return type:

Reference