SchAppCntrName (Object)

Manage a schematic connector.

Methods


Func AppListNames() As
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
 
Sub GetName( 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
 
Sub SetName( iName)
Set the application connector name.
Parameters:
oName
The connector name.
Example:
 
 Dim objThisIntf As SchAppCntrName
 Dim strVar1 As String
  ...
 objThisIntf.SetNamestrVar1