pycatia.abq_automation_interfaces.abq_properties

Module initially auto generated using V5Automation files from CATIA V5 R28 on 2020-09-25 14:34:21.593357

Warning

The notes denoted “CAA V5 Visual Basic Help” are to be used as reference only. They are there as a guide as to how the visual basic / catscript functions work and thus help debugging in pycatia.

class pycatia.abq_automation_interfaces.abq_properties.ABQProperties(com_object)

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357)

System.IUnknown
System.IDispatch
System.CATBaseUnknown
System.CATBaseDispatch
System.Collection
ABQProperties

The collection of Abaqus property objects (ABQProperty) attached to
an
ABQAnalysisModel object.
add(i_property_type: str) ABQProperty

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357))
o Func Add(CATBSTR iPropertyType) As ABQProperty

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”)
Parameters:

i_property_type (str) –

Return type:

ABQProperty

item(i_index: cat_variant) ABQProperty

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357))
o Func Item(CATVariant iIndex) As ABQProperty

Returns an Abaqus property using its index or its name from the
ABQProperties 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.

Returns:
The specified ABQProperty.
Parameters:

i_index (cat_variant) –

Return type:

ABQProperty

remove(i_index: cat_variant) None

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357))
o Sub Remove(CATVariant 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.
Parameters:

i_index (cat_variant) –

Return type:

None