PolyBezierSegment Constructors

Definition

Initializes a new instance of the PolyBezierSegment class.

Overloads

PolyBezierSegment()

Initializes a new instance of the PolyBezierSegment class.

PolyBezierSegment(IEnumerable<Point>, Boolean)

Initializes a new instance of the PolyBezierSegment class with the specified collection of Point objects and a value specifying whether the segments are stroked.

PolyBezierSegment()

Initializes a new instance of the PolyBezierSegment class.

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

Applies to

PolyBezierSegment(IEnumerable<Point>, Boolean)

Initializes a new instance of the PolyBezierSegment class with the specified collection of Point objects and a value specifying whether the segments are stroked.

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

Parameters

points
IEnumerable<Point>

The collection of points that specify the geometry of the cubic Bezier curve segments.

isStroked
Boolean

Value specifying whether the segments are stroked.

Applies to