pycatia.behavior_interfaces.behaviors

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.behavior_interfaces.behaviors.Behaviors(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
Behaviors

Represents the Behaviors collection currently managed by the
application.
These behaviors belong to one objet and can be reached by the GetItem method of
CATIABase. For Instance onto a Part using
Part.GetItem(“CATGetBehaviorExtension”) .

Example:

Set RootPart = CATIA.ActiveDocument.Part
Set MyExtension = RootPart.GetItem(“CATGetBehaviorExtensions”)
Set listBehaviors = MyExtension.Behaviors
item(i_index: cat_variant) Behavior

Note

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

Returns a Behavior using its index or its name from the Behaviors
collection.

Parameters:

iIndex
The index or the name of the Behavior to retrieve from the
collection of Behaviors. As a numerics, this index is the rank of the Behavior
in the collection. The index of the first Behavior in the collection is 1, and
the index of the last Behavior is Count. As a string, it is the name you
assigned to the Behavior using the

AnyObject.Name property.
Returns:
The retrieved Behavior
Example:
This example retrieves in ThisBeh the fifth Behavior in the collection
and in ThatBeh the Behavior named MyBeh.

Dim ThisBeh As Behavior
Set ThisBeh = listBehaviors.Item(5)
Dim ThatBeh As Behavior
Set ThatBeh = listBehaviors.Item(“MyBeh”)
Parameters:

i_index (cat_variant) –

Return type:

Behavior