ArrangementRectangles (Object)

A Collection object for ArrangementRectangle objects.
Role: Use this object to manage (create, retrieve and remove) ArrangementRectangle objects.

Methods


Func AddRectangle( iRelAxis, iPosition, iWidth, iLength) As
Creates an ArrangementRectangle and adds it to the collection.
Parameters:
iRelAxis
Relative Axis to be considered.
iPosition
Position information for the Rectangle (rotation and location).
iWidth
Width of the Rectangle.
iLength
Length of the Rectangle.
Returns:
Returns the newly created ArrangementRectangle and adds it to the collection.
Func Item( iIndex) As
Returns the specified ArrangementRectangle item of the collection object.
Parameters:
iIndex
The index or the name of the ArrangementRectangle to retrieve from this collection.
To retrieve a specific object by number, use the rank of the ArrangementRectangle 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 ArrangementRectangle by name, use name that you assigned using the property.
Returns:
The retrieved ArrangementRectangle object.
Sub Remove( iIndex)
Removes the specified ArrangementRectangle object from the collection.
Parameters:
iIndex
The index or the name of the ArrangementRectangle to remove from this collection.
To remove a specific object by number, use the rank of the ArrangementRectangle 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 ArrangementRectangle by name, use name that you assigned using the property.