API Documentation > CorelDRAW > 2025-v26 > ArrowHeads > IVGArrowHeads
ArrowHeads.Remove method
Removes an arrow head from the collection
Syntax:
Sub Remove(ByVal Index As Long)
Parameters:
Name Type Description
Index
Long
Remarks:
The Remove method deletes an arrowhead object from an ArrowHeads collection.
Examples:
The following VBA example removes the last arrowhead object from the ArrowHeads collection.
Sub ArrowHeadDelete()
ArrowHeads.Remove (ArrowHeads.Count) 
End Sub