pycatia.cat_sch_platform_interfaces.sch_app_cntr_name

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.cat_sch_platform_interfaces.sch_app_cntr_name.SchAppCntrName(com_object)

Note

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

System.IUnknown
System.IDispatch
System.CATBaseUnknown
System.CATBaseDispatch
System.AnyObject
SchAppCntrName

Manage a schematic connector.
app_list_names() SchListOfBSTRs

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357))
o Func AppListNames() As SchListOfBSTRs

List connector names allowed.

Parameters:

oLConnectorNamesAllowed
A list of connector names allowed. The caller must allocate memory
for the first level pointer (i.e. oLConnectorNamesAllowed) and release the
second level pointer (i.e. *oLConnectorNamesAllowed) after usage.

Example:

Dim objThisIntf As SchAppCntrName
Dim objArg1 As SchListOfBSTRs
Set objArg1 = objThisIntf.AppListNames
Return type:

SchListOfBSTRs

get_name(o_name: str) None

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357))
o Sub GetName(CATBSTR oName)

Get the application connector name.

Parameters:

oName
The connector name. The caller must allocate memory for the first
level pointer (i.e. oName) and release the second level pointer (i.e. *oName)
after usage.

Example:

Dim objThisIntf As SchAppCntrName
Dim strVar1 As String
objThisIntf.GetNamestrVar1
Parameters:

o_name (str) –

Return type:

None

set_name(i_name: str) None

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357))
o Sub SetName(CATBSTR iName)

Set the application connector name.

Parameters:

oName
The connector name.

Example:



Dim objThisIntf As SchAppCntrName
Dim strVar1 As String
objThisIntf.SetNamestrVar1
Parameters:

i_name (str) –

Return type:

None