pycatia.arrangement_interfaces.arrangement_contours

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.arrangement_interfaces.arrangement_contours.ArrangementContours(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
ArrangementContours

A collection object for ArrangementContours of an Area.
Role: Use this to manage (create, retrieve and remove) ArrangementContours of
an ArrangementArea.
add_rectangular_contour(i_rectangle: ArrangementRectangle) ArrangementContour

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357))
o Func AddRectangularContour(ArrangementRectangle iRectangle) As
ArrangementContour

Creates a Rectangular Contour by adding a ArrangementRectangle to the
collection.

Parameters:

iRectangle
ArrangementRectangle to create the contour from.

Returns:
Returns the newly created ArrangementContour object and adds it to the
collection.
Parameters:

i_rectangle (ArrangementRectangle) –

Return type:

ArrangementContour

item(i_index: cat_variant) ArrangementContour

Note

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

Returns the specified ArrangementContour item of the
collection.

Parameters:

iIndex
The index or the name of the ArrangementContour to retrieve from
this collection.

To retrieve a specific object by number, use the rank of the
ArrangementContour in that collection.
Note that the index of the first element in the collection is
1, and the index of the last element is Count. To retrieve a specific
ArrangementContour by name, use name that you assigned using the


AnyObject.Name property.
Returns:
The retrieved ArrangementContour object.
Parameters:

i_index (cat_variant) –

Return type:

ArrangementContour

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 the specified ArrangementContour object from the
collection.

Parameters:

iIndex
The index or the name of the ArrangementContour to remove from this
collection.

To remove a specific object by number, use the rank of the
ArrangementContour in that collection.
Note that the index of the first element in the collection is
1, and the index of the last element is Count. To remove a specific
ArrangementContour by name, use name that you assigned using the


AnyObject.Name property.
Parameters:

i_index (cat_variant) –

Return type:

None