QuadraticBezierSegment 建構函式
定義
初始化 QuadraticBezierSegment 類別的新執行個體。Initializes a new instance of the QuadraticBezierSegment class.
多載
QuadraticBezierSegment() |
初始化 QuadraticBezierSegment 類別的新執行個體。Initializes a new instance of the QuadraticBezierSegment class. |
QuadraticBezierSegment(Point, Point, Boolean) |
使用指定的控制點、結束點以及表示是否繪製這個 QuadraticBezierSegment 的布林值,初始化 QuadraticBezierSegment 類別的新執行個體。Initializes a new instance of the QuadraticBezierSegment class with the specified control point, end point, and Boolean indicating whether to stroke this QuadraticBezierSegment. |
QuadraticBezierSegment()
初始化 QuadraticBezierSegment 類別的新執行個體。Initializes a new instance of the QuadraticBezierSegment class.
public:
QuadraticBezierSegment();
public QuadraticBezierSegment ();
Public Sub New ()
適用於
QuadraticBezierSegment(Point, Point, Boolean)
使用指定的控制點、結束點以及表示是否繪製這個 QuadraticBezierSegment 的布林值,初始化 QuadraticBezierSegment 類別的新執行個體。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)
參數
- point1
- Point
這個 QuadraticBezierSegment 的控制點。The control point of this QuadraticBezierSegment.
- point2
- Point
這個 QuadraticBezierSegment 的結束點。The end point of this QuadraticBezierSegment.
- isStroked
- Boolean
如果要繪製這個 QuadraticBezierSegment,則為 true
;否則為 false
。true
if this QuadraticBezierSegment is to be stroked; otherwise, false
.