ABQDataOutputRequests (Object)

The collection of Abaqus data output request (ABQDataOutputRequest) objects attached to an
, an , or an object.

Methods


Func Add() As
Creates a new Abaqus data output request and adds it to the collection of Abaqus data output requests.
Returns:
oDataOutputRequest The Abaqus data output request object that was created.
Example:
The following example creates a data output request in the ABQDataOutputRequests collection:
 Dim abqDataOutputRequests As ABQDataOutputRequests
 Set abqDataOutputRequests = generalstaticstep.DataOutputRequests
 Dim abqDataOutputRequest As ABQDataOutputRequest
 Set abqDataOutputRequest =  abqDataOutputRequests.Add()
 
Func Item( iIndex) As
Returns an Abaqus data output request using its index or its name from the collection.
Parameters:
iIndex
The index or the name of the Abaqus data output request to retrieve from the collection of Abaqus data output requests. If the index is a number, it specifies the rank of the Abaqus data output request in the collection. The index of the first Abaqus data output request in the collection is 1, and the index of the last data output request is Count. If the index is a string, it specifies the name you assigned to the data output request using the CATIACollection::Name property.
Returns:
The specified .
Sub Remove( iIndex)
Removes an Abaqus data output request using its index or its name from the data output requests collection.
Parameters:
iIndex
The index or the name of the data output request to retrieve from the collection of data output requests. As a numeric, this index is the rank of the data output request in the collection. The index of the first data output request in the collection is 1, and the index of the last data output request is Count. As a string, it is the name you assigned to the data output request using the CATIABase::Name property.