, , or an object.
Methods
- Func Add( iLoadType) As
-
Creates a new Abaqus load and adds it to the collection of Abaqus loads.
- Parameters:
-
- iLoadType
- The type of the load to create.
Legal values:- "ABQPressure"
- "ABQConcentratedForce"
- "ABQGravity"
- "ABQFilmCondition"
- Returns:
- oLoad The Abaqus load object that was created.
- Example:
-
The following example creates a pressure load in the ABQLoads collection:
Dim abaqusLoads As ABQLoads Dim abqPressure As ABQPressure Set abaqusLoads = generalstaticstep.Loads Set abqPressure = abaqusLoads.Add("ABQPressure")dd>
- Func Item( iIndex) As
-
Returns an Abaqus load using its index or its name from the
collection.
- Parameters:
-
- iIndex
- The index or the name of the Abaqus load to retrieve from the collection of Abaqus loads. If the index is a number, it specifies the rank of the Abaqus load in the collection. The index of the first Abaqus load in the collection is 1, and the index of the last load is Count. If the index is a string, it specifies the name you assigned to the load using the CATIACollection::Name property. dd>
- Returns:
- The specified . dd>
- Sub Remove( iIndex)
-
Removes a Abaqus load using its index or its name from the collection od loads.
- Parameters:
-
- iIndex
- The index or the name of the Abaqus load n to retrieve from the collection of Abaqus loads. If the index is a number, it specifies the rank of the Abaqus load in the collection. The index of the first Abaqus load in the collection is 1, and the index of the last load is Count. If the index is a string, it specifies the name you assigned to the load using the CATIACollection::Name property. dd>