Shape.StrokeDashArray Property

Definition

Gets or sets a collection of Double values that indicate the pattern of dashes and gaps that is used to outline shapes.

C#
public System.Windows.Media.DoubleCollection StrokeDashArray { get; set; }

Property Value

A collection of Double values that specify the pattern of dashes and gaps.

Remarks

Each Double in the collection specifies the length of a dash or gap relative to the Thickness of the pen. For example, a value of 1 creates a dash or gap that has the same length as the thickness of the pen (a square).

The first item in the collection, which is located at index 0, specifies the length of a dash; the second item, which is located at index 1, specifies the length of a gap.

Objects with an even index value specify dashes; objects with an odd index value specify gaps.

Applies to

Product Versions
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

See also