Methods
- Sub AppCreateCompRef( iAppCompClassType, iDoc, oAppComp)
-
Create an Application Component reference.
- Parameters:
-
- iAppCompClassType
- Class type of the Application Component reference. dd>
- iDoc
- Pointer to a document to create the object in. If NULL, the document associated with the current Editor will be used. dd>
- oAppComp
- The new Application Component object created (CATISchAppComponent interface pointer). dd>
- Example:
-
Dim objThisIntf As SchAppObjectFactory2 Dim strVar1 As String Dim objArg2 As Document Dim objArg3 As AnyObject ... objThisIntf.AppCreateCompRefstrVar1,objArg2,objArg3
- Sub AppCreateConnection( iAppCntnClassType, iDoc, oAppConnection)
-
Create an Application Connection object.
- Parameters:
-
- iAppCntnClassType
- Class type of the Application Connection object. dd>
- iDoc
- Pointer to a document to create the object in. If NULL, the document associated with the current Editor will be used. dd>
- oAppConnection
- The new Application Connection object created (CATISchAppConnection interface pointer). dd>
- Example:
-
Dim objThisIntf As SchAppObjectFactory2 Dim strVar1 As String Dim objArg2 As Document Dim objArg3 As AnyObject ... objThisIntf.AppCreateConnectionstrVar1,objArg2,objArg3
- Sub AppCreateGroup( iAppGroupClassType, iDoc, oAppGroup)
-
Create an Application Group object.
- Parameters:
-
- iAppGroupClassType
- Class type of the Application Group object. dd>
- iDoc
- Pointer to a document to create the object in. If NULL, the document associated with the current Editor will be used. dd>
- oAppGroup
- The new Application Group object created (CATISchAppGroup interface pointer). dd>
- Example:
-
Dim objThisIntf As SchAppObjectFactory2 Dim strVar1 As String Dim objArg2 As Document Dim objArg3 As AnyObject ... objThisIntf.AppCreateGroupstrVar1,objArg2,objArg3
- Sub AppCreateRoute( iAppRouteClassType, iDoc, iLogLineID, oAppRoute)
-
Create an Application Route object.
- Parameters:
-
- iAppRouteClassType
- Class type of the Application Route object. dd>
- iDoc
- Pointer to a document to create the object in. If NULL, the document associated with the current Editor will be used. dd>
- iLogLineID
- The logical line ID that will contain the new route. This is an optional input. If could be NULL. dd>
- oAppRoute
- The new Application Route object created (CATISchAppRoute interface pointer). dd>
- Example:
-
Dim objThisIntf As SchAppObjectFactory2 Dim strVar1 As String Dim objArg2 As Document Dim strVar3 As String Dim objArg4 As AnyObject ... objThisIntf.AppCreateRoutestrVar1,objArg2,strVar3,objArg4
- Sub AppCreateRouteFromRef( iRouteReference, iDoc, iLogLineID, oAppRoute)
-
Create an Application Route object with a specific reference.
- Parameters:
-
- iAppRouteRef
- Route reference to creaet the output route from dd>
- iDoc
- Pointer to a document to create the object in. If NULL, the document associated with the current Editor will be used. dd>
- iLogLineID
- The logical line ID that will contain the new route. This is an optional input. If could be NULL. dd>
- oAppRoute
- The new Application Route object created (CATISchAppRoute interface pointer). dd>
- Example:
-
Dim objThisIntf As SchAppObjectFactory2 Dim objArg1 As SchAppRoute Dim objArg2 As Document Dim strVar3 As String Dim objArg4 As AnyObject ... objThisIntf.AppCreateRouteFromRefobjArg1,objArg2,strVar3,objArg4
- Sub AppCreateRouteWithInfo( iAppRouteClassType, iAppInfo, oAppRoute)
-
Create an Application Route object with application information.
- Parameters:
-
- iAppRouteClassType
- Class type of the Application Route object. dd>
- iAppInfo
- Application data pointer dd>
- oAppRoute
- The new Application Route object created (CATISchAppRoute interface pointer). dd>
- Example:
-
Dim objThisIntf As SchAppObjectFactory2 Dim strVar1 As String Dim objArg2 As AnyObject Dim objArg3 As AnyObject ... objThisIntf.AppCreateRouteWithInfostrVar1,objArg2,objArg3
- Sub AppCreateZone( iAppZoneClassType, iDoc, oAppZone)
-
Create an Application Zone object.
- Parameters:
-
- iAppZoneClassType
- Class type of the Application Zone object. dd>
- iDoc
- Pointer to a document to create the object in. If NULL, the document associated with the current Editor will be used. dd>
- oAppZone
- The new Application Zone object created (CATISchAppZone interface pointer). dd>
- Example:
-
Dim objThisIntf As SchAppObjectFactory2 Dim strVar1 As String Dim objArg2 As Document Dim objArg3 As AnyObject ... objThisIntf.AppCreateZonestrVar1,objArg2,objArg3