Methods
- Sub AddDropOffView( iView, oView, iDb2PosXY, iDb1Scale, iDb1Angl)
-
Adds a drafting view to the schematics diagram.
- Parameters:
-
- iView
- pointer to drafting view to add dd>
- oView
- pointer to newly added drafting in this document dd>
- iDb2PosXY
- pointer to XY coordinate for placement, if NULL, the position is the same as that of the input view. dd>
- iDb1Scale
- scale of view added, if NULL, scale is assumed to be that of the input view. dd>
- iDb1Angle
- The view orientation, if NULL, orientation is assumed to be that of the input view. dd>
- Example:
-
Dim objThisIntf As SchDropOffView Dim objArg1 As DrawingView Dim objArg2 As DrawingView Dim dbVar3(2) As CATSafeArrayVariant ... objThisIntf.AddDropOffViewobjArg1,objArg2,dbVar3,dbVar3,dbVar3
- Func ListDropOffViews() As
-
Lists drafting views in this schematics diagram.
- Parameters:
-
- oLDropOffViews
- A list of drafting views dd>
- Example:
-
Dim objThisIntf As SchDropOffView Dim objArg1 As SchListOfObjects ... Set objArg1 = objThisIntf.ListDropOffViews
- Sub RemoveDropOffView( iViewToRemove)
-
Removes a drafting view from the schematics diagram.
- Parameters:
-
- iViewToRemove
- pointer to drafting view to remove dd>
- Example:
-
Dim objThisIntf As SchDropOffView Dim objArg1 As DrawingView ... objThisIntf.RemoveDropOffViewobjArg1