QuadraticBezierSegment Constructors

Definition

Initializes a new instance of the QuadraticBezierSegment class.

Overloads

QuadraticBezierSegment()

Initializes a new instance of the QuadraticBezierSegment class.

QuadraticBezierSegment(Point, Point, Boolean)

Initializes a new instance of the QuadraticBezierSegment class with the specified control point, end point, and Boolean indicating whether to stroke this QuadraticBezierSegment.

QuadraticBezierSegment()

Initializes a new instance of the QuadraticBezierSegment class.

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

Applies to

QuadraticBezierSegment(Point, Point, Boolean)

Initializes a new instance of the QuadraticBezierSegment class with the specified control point, end point, and Boolean indicating whether to stroke this QuadraticBezierSegment.

public:
 QuadraticBezierSegment(System::Windows::Point point1, System::Windows::Point point2, bool isStroked);
public QuadraticBezierSegment (System.Windows.Point point1, System.Windows.Point point2, bool isStroked);
new System.Windows.Media.QuadraticBezierSegment : System.Windows.Point * System.Windows.Point * bool -> System.Windows.Media.QuadraticBezierSegment
Public Sub New (point1 As Point, point2 As Point, isStroked As Boolean)

Parameters

point1
Point

The control point of this QuadraticBezierSegment.

point2
Point

The end point of this QuadraticBezierSegment.

isStroked
Boolean

true if this QuadraticBezierSegment is to be stroked; otherwise, false.

Applies to