API Documentation > CorelDRAW > 2025-v26 > Outline > IVGOutline
Outline.EndArrow property
Gets or sets the right arrow
Syntax:
Property Get EndArrow() As ArrowHead
Property Set EndArrow(ByVal Value As ArrowHead)
Remarks:
The EndArrow property represents the ending arrowhead of an outline.
Examples:
The following VBA example applies the fifth arrowhead to the ending point of the selected curve.
Sub Test()
Dim s As Shape
Set s = ActiveShape
If s Is Nothing Then
  MsgBox "Nothing is selected."
  Exit Sub
End If
If s.Outline.Type = cdrOutline Then
  s.Outline.EndArrow = ArrowHeads(5)
End If 
End Sub Sub Test()
Dim s As Shape
For Each s In ActivePage.Shapes
  If s.Outline.Type = cdrOutline Then

 s.Outline.StartArrow = Nothing

 s.Outline.EndArrow = Nothing
  End If
Next s 
End Sub