Methods
- Func Add( iHeadPointX, iHeadPointY, iTailPointX, iTailPointY) As
-
Creates a drawing arrow and adds it to the DrawingArrows collection.
- Parameters:
-
- iHeadPointX,iHeadPointY
- The x and y coordinates of head side of drawing arrow dd>
- iTailPointX,iTailPointY
- The x and y coordinates of tail side of drawing arrow dd>
- Returns:
- The created drawing arrow
- Example:
-
The following example creates a drawing arrow
and retrieved in MyArrow in the drawing view collection
of the MyView drawing view.
This view belongs to the drawing view collection of the drawing sheet
Dim MyView As DrawingView Set MyView = MySheet.Views.ActiveView Dim MyArrow As DrawingArrow Set MyArrow = MyView.Arrows.Add(0., 0., 20., 50)
- Parameters:
-
- iIndex
- The index of the drawing arrow to retrieve from the collection of drawing arows. As a numerics, this index is the rank of the drawing arrow in the collection. The index of the first drawing arrow in the collection is 1, and the index of the last drawing arrow is Count. dd>
- Returns:
- The retrieved drawing view
- Example:
-
This example retrieves in ThisDrawingArrow the second drawing arrow,
in the drawing view collection of the active view
in the active sheet, in the active document supposed to be a drawing document.
Dim MyView As DrawingView Set MyView = MySheet.Views.ActiveView Dim ThisDrawingArrow As DrawingArrow Set ThisDrawingArrow = MyView.Arrows.Item(2)
- Parameters:
-
- iIndex
- The index of the drawing arrow to remove from the collection of drawing arrows. As a numerics, this index is the rank of the drawing arrow in the collection. The index of the first drawing arrow in the collection is 1, and the index of the last drawing arrow is Count.
- Example:
-
The following example removes the third drawing arrow
in the drawing arrow collection of the active view
of the active document, supposed to be a drawing document.
Dim MyView As DrawingView Set MyView = MySheet.Views.ActiveView MyView.DrawingArrows.Remove(3)