Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Set sh = ActiveDocument.Shapes.AddLine(10, 10, 100, 10)
sh.Line.EndArrowheadStyle = msoArrowheadTriangle
Dim sh As Shape
Sub CreateArrowLine()
Dim sh As Shape
Set sh = ActiveDocument.Shapes.AddLine(10, 10, 100, 100)
sh.Line.Weight = 2
sh.Line.EndArrowheadStyle = msoArrowheadOpen
' = msoArrowheadTriangle
End Sub