Methods
- Func CreateGRRCntr() As
-
Create the graphical representation of a Schematic Connector.
- Parameters:
-
- oGRRCntr
- The graphical representation of the connector dd>
- Example:
-
Dim objThisIntf As SchGRRFactory Dim objArg1 As SchGRRCntr ... Set objArg1 = objThisIntf.CreateGRRCntr
- Func CreateGRRGroup( iLPrimitive) As
-
Create the graphical representation of a Schematic Group.
- Parameters:
-
- iLPrimitives
- A list of 2D drafting detail pointers Members are CATI2DDetail interface poiners. dd>
- oGRRGroup
- The graphical representation of the Group dd>
- Example:
-
Dim objThisIntf As SchGRRFactory Dim objArg1 As SchListOfObjects Dim objArg2 As AnyObject ... Set objArg2 = objThisIntf.CreateGRRGroup(objArg1)
- Sub CreateGRRRoute( iLDbLinePath, oGRRRoute)
-
Create the graphical representation of a Schematic Route.
- Parameters:
-
- iLDbPtPath
- A list of X-Y coordinates of points defining the Route. 2 doubles per point. dd>
- oGRRRoute
- The graphical representation of the Route dd>
- Example:
-
Dim objThisIntf As SchGRRFactory Dim dbVar1(x) As CATSafeArrayVariant Dim objArg3 As SchGRRRoute ... objThisIntf.CreateGRRRoutedbVar1,objArg3
- Sub CreateGRRRouteEllipse( iDbXYSeedPt, oGRRRouteEllipse)
-
Create the graphical representation of a Schematic Route Ellipse.
- Parameters:
-
- iDbXYSeedPt
- X-Y coordinate of the seed point for the ellipse. If NULL, the seed point will not be set. dd>
- oGRRRouteEllipse
- The graphical representation of the Route Ellipse dd>
- Example:
-
Dim objThisIntf As SchGRRFactory Dim dbVar1(X) As CATSafeArrayVariant Dim objArg2 As SchGRRRouteEllipse ... objThisIntf.CreateGRRRouteEllipsedbVar1,objArg2
- Func CreateGRRZone( iLPrimitive) As
-
Create the graphical representation of a Schematic Zone.
- Parameters:
-
- iLPrimitives
- A list of 2D drafting object pointers defining the zone boundaries. dd>
- oGRRZone
- The graphical representation of the Zone dd>
- Example:
-
Dim objThisIntf As SchGRRFactory Dim objArg1 As SchListOfObjects Dim objArg2 As SchGRRZone ... Set objArg2 = objThisIntf.CreateGRRZone(objArg1)