pycatia.abq_automation_interfaces.abq_jobs

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.abq_automation_interfaces.abq_jobs.ABQJobs(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
ABQJobs

The collection of Abaqus (ABQJob) objects.
add() ABQJob

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357))
o Func Add() As ABQJob

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()
Return type:

ABQJob

item(i_index: cat_variant) ABQJob

Note

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

Returns an Abaqus job using its index or its name from the ABQJobs
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.

Returns:
oJob The specified ABQJob.
Parameters:

i_index (cat_variant) –

Return type:

ABQJob

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 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.
Parameters:

i_index (cat_variant) –

Return type:

None