The index or the name of the Abaqus analysis case to retrieve from
the collection of Abaqus analysis cases.
If the index is a number, it specifies the rank of the Abaqus analysis case
in the collection. The index of the first Abaqus analysis case in the collection is 1,
and the index of the last case is Count.
If the index is a string, it specifies the name you assigned to the case using
the CATIACollection::Name property.
Returns:
The specified ABQIAABQAnalysisCase.
Example:
This example retrieves the fifth Abaqus analysis case in the collection and saves it in a variable called ThisCase. The example also retrieves the Abaqus analysis case
named "MyCase" in the collection and saves it in a variable called ThatCase.
Set CaseColl = AnalysisDoc.ABQAnalysisModel.Cases
Set ThisCase = CaseColl.Item(5)
Set ThatCase = CaseColl.Item("MyCase")