pycatia.funct_system_interfaces.funct_scripts

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_scripts.FunctScripts(com_object, child_object=<class 'pycatia.funct_system_interfaces.funct_script.FunctScript'>)

Note

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

System.IUnknown
System.IDispatch
System.CATBaseUnknown
System.CATBaseDispatch
System.Collection
FunctScripts

The interface to access a set of Functional Scripts.

It is managed on a Functional Element, thru the GenerativeKnowledge Facet
Manager (GKW).
create(i_name: str) FunctScript

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357))
o Func Create(CATBSTR iName) As FunctScript

Create a FunctScript.
Parameters:

i_name (str) –

Return type:

FunctScript

delete(i_script: FunctScript) None

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357))
o Sub Delete(FunctScript iScript)

Delete a FunctScript.
Parameters:

i_script (FunctScript) –

Return type:

None

elem(i_index: cat_variant) FunctScript

Note

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

Returns an association using its index or its name from the Scripts
collection.

Parameters:

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

AnyObject.Name property.
Returns:
The retrieved Script
Example:
This example retrieves in Act1 the fifth Script in the collection and
in Act2 the Script named Moves.

Dim FunctElem As FunctionalObject
Set FunctElem = FunctDoc.CurrentDescription.Objects.Elem(“Valve”)
Dim FacetGKW As FunctionalGenScriptMgr
Set FacetGKW = FunctElem.GetFacetByName(“GKW”)
Dim Assoc1 As FunctScript
Set Assoc1 = FacetGKW.Scripts.Elem(5)
Dim Assoc2 As FunctScript
Set Assoc2 = FacetGKW.Scripts.Elem(“Producing the Skeleton 2D”)
Parameters:

i_index (cat_variant) –

Return type:

FunctScript