pycatia.arrangement_interfaces.arrangement_boundaries

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_boundaries.ArrangementBoundaries(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
ArrangementBoundaries

A collection object for ArrangementBoundary objects.
Role: This collection object is used to manage (create, retrieve and remove
)ArrangementBoundary objects.
add_boundary(i_rel_axis: Move, i_listof_math_points: tuple, i_math_direction: tuple) ArrangementBoundary

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357))
o Func AddBoundary(Move iRelAxis,
CATSafeArrayVariant iListofMathPoints,
CATSafeArrayVariant iMathDirection) As ArrangementBoundary

Creates an ArrangementBoundary and adds it to the
collection.

Parameters:

iRelAxis
Relative Axis to be considered.
iListofMathPoints
List of points through which to route.
iMathDirection
Starting routing direction.

Returns:
The newly created ArrangementBoundary object.
Parameters:
  • i_rel_axis (Move) –

  • i_listof_math_points (tuple) –

  • i_math_direction (tuple) –

Return type:

ArrangementBoundary

item(i_index: cat_variant) ArrangementBoundary

Note

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

Returns the specified ArrangementBoundary item of the
collection.

Parameters:

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

To retrieve a specific object by number, use the rank of the
ArrangementBoundary 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
ArrangementBoundary by name, use name that you assigned using the

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

i_index (cat_variant) –

Return type:

ArrangementBoundary

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

Parameters:

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

To remove a specific object by number, use the rank of the
ArrangementBoundary 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
ArrangementBoundary by name, use name that you assigned using the


AnyObject.Name property.
Parameters:

i_index (cat_variant) –

Return type:

None