PolyLineSegment Constructors

Definition

Initializes a new instance of the PolyLineSegment class.

Overloads

PolyLineSegment()

Initializes a new instance of the PolyLineSegment class.

PolyLineSegment(IEnumerable<Point>, Boolean)

Initializes a new instance of the PolyLineSegment class with the specified list of points that determine the line segments and a value indicating whether the segments are stroked.

PolyLineSegment()

Initializes a new instance of the PolyLineSegment class.

public:
 PolyLineSegment();
public PolyLineSegment ();
Public Sub New ()

Applies to

PolyLineSegment(IEnumerable<Point>, Boolean)

Initializes a new instance of the PolyLineSegment class with the specified list of points that determine the line segments and a value indicating whether the segments are stroked.

public:
 PolyLineSegment(System::Collections::Generic::IEnumerable<System::Windows::Point> ^ points, bool isStroked);
public PolyLineSegment (System.Collections.Generic.IEnumerable<System.Windows.Point> points, bool isStroked);
new System.Windows.Media.PolyLineSegment : seq<System.Windows.Point> * bool -> System.Windows.Media.PolyLineSegment
Public Sub New (points As IEnumerable(Of Point), isStroked As Boolean)

Parameters

points
IEnumerable<Point>

A collection of points that determine the line segments of the PolyLineSegment.

isStroked
Boolean

true to make the segment stroked; otherwise, false.

Applies to