LineFormat.DashStyle property (Word)
Returns or sets the dash style for the specified line. Read/write MsoLineDashStyle.
expression.DashStyle
expression Required. A variable that represents a LineFormat object.
This example adds a blue dashed line to the active document.
Dim docActive As Document
Set docActive = ActiveDocument
With docActive.Shapes.AddLine(10, 10, 250, 250).Line
.DashStyle = msoLineDashDotDot
.ForeColor.RGB = RGB(50, 0, 128)
End With
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.