Returns an Axis System using its index or its name from the AxisSystems
collection.
Parameters:
iIndex
The index or the name of the AxisSystem to retrieve from
the collection of AxisSystems.
As a numerics, this index is the rank of the AxisSystem
in the collection.
The index of the first AxisSystem in the collection is 1, and
the index of the last AxisSystem is Count.
As a string, it is the name you assigned to the AxisSystem using
the
This example retrieves in ThisAxisSystem the fifth AxisSystem
in the collection and in ThatAxisSystem the AxisSystem
named MyAxisSystem in the AxisSystem collection of the partDoc
part document.
Set AxisSystemColl = partDoc.Part.AxisSystems
Set ThisAxisSystem = AxisSystemColl.Item(5)
Set ThatAxisSystem = AxisSystemColl.Item("MyAxisSystem")