object.
Methods
- Func Add( iPropertyType) As
-
Creates a new Abaqus Property and adds it to the collection
of Abaqus Properties.
- Parameters:
-
- iPropertyType
- The type of the Property to create.
Legal values:- "ABQTabularAmplitude"
- "ABQSmoothStepAmplitude"
- "ABQMechConnBehavior"
- "ABQThermalConnBehavior"
- "ABQPreTensionProperty"
- "ABQGasketProperty"
- Returns:
- oProperty The Abaqus Property object that was created.
- Example:
-
The following example creates a Tabular Amplitude Property in the ABQProperties collection:
Dim abaqusproperties As ABQPropertiess Dim abqtabularAmpl As ABQTabularAmplitude Set abqtabularAmpl = abaqusproperties.Add("ABQTabularAmplitude")dd>
- Func Item( iIndex) As
-
Returns an Abaqus property using its index or its name from the
collection.
- Parameters:
-
- iIndex
- The index or the name of the Abaqus property to retrieve from the collection of Abaqus properties. If the index is a number, it specifies the rank of the Abaqus property in the collection. The index of the first Abaqus property in the collection is 1, and the index of the last property is Count. If the index is a string, it specifies the name you assigned to the property using the CATIACollection::Name property. dd>
- Returns:
- The specified . dd>
- Sub Remove( iIndex)
-
Removes a Abaqus property using its index or its name from the property collection.
- Parameters:
-
- iIndex
- The index or the name of the Abaqus property to retrieve from the collection of Abaqus Properties. If the index is a number, it specifies the rank of the Abaqus property in the collection. The index of the first Abaqus property in the collection is 1, and the index of the last property is Count. If the index is a string, it specifies the name you assigned to the property using the CATIABase::Name property. dd>