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.

public:
 property System::Windows::Media::DoubleCollection ^ StrokeDashArray { System::Windows::Media::DoubleCollection ^ get(); void set(System::Windows::Media::DoubleCollection ^ value); };
public System.Windows.Media.DoubleCollection StrokeDashArray { get; set; }
member this.StrokeDashArray : System.Windows.Media.DoubleCollection with get, set
Public Property StrokeDashArray As DoubleCollection

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

See also