Previous Document Next Document

Object Model Reference : Classes : A : Application : Properties : Application.ArrowHeads


Application.ArrowHeads

Property ArrowHeads As ArrowHeads

Description

Member of Application

The Arrowheads property returns the ArrowHeads collection.

The Arrowheads property returns a read-only value.

VBA example

The following VBA example applies an arrowhead with an index of 5 to the beginning of the outlines of each selected object.

Sub ItemArrowHead()
 Dim s As Shape
 For Each s In ActiveDocument.Selection.Shapes
  If s.Outline.Type = cdrOutline Then
   s.Outline.StartArrow = ArrowHeads.Item(5)
  'can also be referenced as s.Outline.StartArrow = ArrowHeads (5)
  End If
 Next s
End Sub

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.