pycatia.abq_automation_interfaces.abq_history_output_requests

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_history_output_requests.ABQHistoryOutputRequests(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
ABQHistoryOutputRequests

The collection of Abaqus history output request (ABQHistoryOutputRequest)
objects attached to an
ABQGeneralStaticStep, an ABQHeatTransferStep, or an ABQExplicitDynamicsStep
object.
add() ABQHistoryOutputRequest

Note

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

Creates a new Abaqus history output request and adds it to the collection
of Abaqus history output requests.

Returns:
oHistoryOutputRequest The Abaqus history output request object that was
created.
Example:
The following example creates a history output request in the
ABQHistoryOutputRequests collection:

Dim abqHistoryOutputRequests As
ABQHistoryOutputRequests
Set abqHistoryOutputRequests = generalstaticstep.HistoryOutputRequests
Dim abqHistoryOutputRequest As
ABQHistoryOutputRequest
Set abqHistoryOutputRequest = abqHistoryOutputRequests.Add()
Return type:

ABQHistoryOutputRequest

item(i_index: cat_variant) ABQHistoryOutputRequest

Note

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

Returns an Abaqus history output request using its index or its name from
the ABQHistoryOutputRequests collection.

Parameters:

iIndex
The index or the name of the Abaqus history output request to
retrieve from the collection of Abaqus history output requests. If the index is
a number, it specifies the rank of the Abaqus history output request in the
collection. The index of the first Abaqus history output request in the
collection is 1, and the index of the last history output request is Count. If
the index is a string, it specifies the name you assigned to the history output
request using the CATIACollection::Name property.

Returns:
The specified ABQHistoryOutputRequest.
Parameters:

i_index (cat_variant) –

Return type:

ABQHistoryOutputRequest

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 history output request using its index or its name from
the history output requests collection.

Parameters:

iIndex
The index or the name of the history output request to retrieve
from the collection of history output requests. As a numeric, this index is the
rank of the history output request in the collection. The index of the first
history output request in the collection is 1, and the index of the last
history output request is Count. As a string, it is the name you assigned to
the history output request using the CATIABase::Name
property.
Parameters:

i_index (cat_variant) –

Return type:

None