PolyLineSegment Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
.