, an , an , or an object.
Methods
- Func Add() As
-
Creates a new Abaqus field output request and adds it to the collection of Abaqus field output requests.
- Returns:
- oFieldOutputRequest The Abaqus field output request object that was created.
- Example:
-
The following example creates a field output request in the ABQFieldOutputRequests collection:
Dim abqFieldOutputRequests As ABQFieldOutputRequests Set abqFieldOutputRequests = generalstaticstep.FieldOutputRequests Dim abqFieldOutputRequest As ABQFieldOutputRequest Set abqFieldOutputRequest = abqFieldOutputRequests.Add()
dd>
- Func Item( iIndex) As
-
Returns an Abaqus field output request using its index or its name from the
collection.
- Parameters:
-
- iIndex
- The index or the name of the Abaqus field output request to retrieve from the collection of Abaqus field output requests. If the index is a number, it specifies the rank of the Abaqus field output request in the collection. The index of the first Abaqus field output request in the collection is 1, and the index of the last field output request is Count. If the index is a string, it specifies the name you assigned to the field output request using the CATIACollection::Name property. dd>
- Returns:
- The specified . dd>
- Sub Remove( iIndex)
-
Removes an Abaqus field output request using its index or its name from the field output requests collection.
- Parameters:
-
- iIndex
- The index or the name of the field output request to retrieve from the collection of field output requests. As a numeric, this index is the rank of the field output request in the collection. The index of the first field output request in the collection is 1, and the index of the last field output request is Count. As a string, it is the name you assigned to the field output request using the CATIABase::Name property. dd>