LineFormat.BeginArrowheadWidth property (Publisher)
Returns or sets an MsoArrowheadWidth constant indicating the width of the arrowhead at the beginning of the specified line. Read/write.
Syntax
expression.BeginArrowheadWidth
expression A variable that represents a LineFormat object.
Return value
MsoArrowheadWidth
Remarks
The BeginArrowheadWidth property value can be one of the MsoArrowheadWidth constants declared in the Microsoft Office type library.
Use the EndArrowheadWidth property to return or set the width of the arrowhead at the end of the line.
Example
This example adds a line to the active publication. There is a short, narrow oval on the line's starting point and a long, wide triangle on its endpoint.
With ActiveDocument.Pages(1).Shapes _
.AddLine(BeginX:=100, BeginY:=100, _
EndX:=200, EndY:=300).Line
.BeginArrowheadLength = msoArrowheadShort
.BeginArrowheadStyle = msoArrowheadOval
.BeginArrowheadWidth = msoArrowheadNarrow
.EndArrowheadLength = msoArrowheadLong
.EndArrowheadStyle = msoArrowheadTriangle
.EndArrowheadWidth = msoArrowheadWide
End With
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.