PolyQuadraticBezierSegment Constructors

Definition

Initializes a new instance of the PolyQuadraticBezierSegment class.

Overloads

PolyQuadraticBezierSegment()

Initializes a new instance of the PolyQuadraticBezierSegment class.

PolyQuadraticBezierSegment(IEnumerable<Point>, Boolean)

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

PolyQuadraticBezierSegment()

Initializes a new instance of the PolyQuadraticBezierSegment class.

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

Applies to

PolyQuadraticBezierSegment(IEnumerable<Point>, Boolean)

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

public:
 PolyQuadraticBezierSegment(System::Collections::Generic::IEnumerable<System::Windows::Point> ^ points, bool isStroked);
public PolyQuadraticBezierSegment (System.Collections.Generic.IEnumerable<System.Windows.Point> points, bool isStroked);
new System.Windows.Media.PolyQuadraticBezierSegment : seq<System.Windows.Point> * bool -> System.Windows.Media.PolyQuadraticBezierSegment
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 Bezier curve segments.

isStroked
Boolean

true to stroke the segments; otherwise, false.

Applies to