pycatia.funct_system_interfaces.funct_facet_managers

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.funct_system_interfaces.funct_facet_managers.FunctFacetManagers(com_object, child_object=<class 'pycatia.funct_system_interfaces.functional_facet_mgr.FunctionalFacetMgr'>)

Note

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

System.IUnknown
System.IDispatch
System.CATBaseUnknown
System.CATBaseDispatch
System.Collection
FunctFacetManagers

Represents the Functional Facet’s Managers.
elem(i_index: cat_variant) FunctionalFacetMgr

Note

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

Returns a facet manager using its index or its name from the facet managers
collection.

Parameters:

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


AnyObject.Name property.
Returns:
The retrieved action
Example:
This example retrieves in Obj1 the fifth facet manager in the
collection and in Obj2 the facet manager named IMC.

Dim Obj1 As FunctFacetManager
Set Obj1 = Desc.FacetManagers.Elem(5)
Dim Obj2 As FunctFacetManager
Set Obj2 = Desc.FacetManagers.Elem(“IMC”)
Parameters:

i_index (cat_variant) –

Return type:

FunctionalFacetMgr