Compartilhar via


LineFormat.DashStyle Property (Word)

Returns or sets the dash style for the specified line. Read/write MsoLineDashStyle.

Syntax

expression .DashStyle

expression Required. A variable that represents a LineFormat object.

Example

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

See Also

Concepts

LineFormat Object Members

LineFormat Object