, an , or an object.
Methods
- Func Add() As
-
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()
dd>
- Func Item( iIndex) As
-
Returns an Abaqus history output request using its index or its name from the
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. dd>
- Returns:
- The specified . dd>
- Sub Remove( 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. dd>