Methods
- Func Add() As
-
Creates a new Abaqus job and adds it to the collection of Abaqus jobs.
- Returns:
- oJob The Abaqus job object that was created.
- Example:
-
The following example creates a job in the ABQJobs collection:
Dim abaqusJobs As ABQJobs Dim abqJob As ABQJob Set abaqusJobs = abqCase.Jobs Set abqJob = abaqusJobs.Add()
dd>
- Func Item( iIndex) As
-
Returns an Abaqus job using its index or its name from the
collection.
- Parameters:
-
- iIndex
- The index or the name of the Abaqus job to retrieve from the collection of Abaqus jobs. If the index is a number, it specifies the rank of the Abaqus job in the collection. The index of the first Abaqus job in the collection is 1, and the index of the last job is Count. If the index is a string, it specifies the name you assigned to the job using the CATIACollection::Name property. dd>
- Returns:
- oJob The specified . dd>
- Sub Remove( iIndex)
-
Removes an Abaqus Job using its index or its name from the job collection.
- Parameters:
-
- iIndex
- The index or the name of the job to retrieve from the collection of jobs. As a numeric, this index is the rank of the job in the collection. The index of the first job in the collection is 1, and the index of the last job is Count. As a string, it is the name you assigned to the job using the CATIABase::Name property. dd>