Share via


PathF.QuadTo Method

Definition

Overloads

QuadTo(PointF, PointF)

Adds a quadratic Bézier curve segment defined by a control point and an end point.

QuadTo(Single, Single, Single, Single)

Adds a quadratic Bézier curve segment using coordinate values.

QuadTo(PointF, PointF)

Source:
PathF.cs
Source:
PathF.cs
Source:
PathF.cs

Adds a quadratic Bézier curve segment defined by a control point and an end point.

public:
 Microsoft::Maui::Graphics::PathF ^ QuadTo(Microsoft::Maui::Graphics::PointF controlPoint, Microsoft::Maui::Graphics::PointF point);
public Microsoft.Maui.Graphics.PathF QuadTo(Microsoft.Maui.Graphics.PointF controlPoint, Microsoft.Maui.Graphics.PointF point);
member this.QuadTo : Microsoft.Maui.Graphics.PointF * Microsoft.Maui.Graphics.PointF -> Microsoft.Maui.Graphics.PathF
Public Function QuadTo (controlPoint As PointF, point As PointF) As PathF

Parameters

controlPoint
PointF

Quadratic control point.

point
PointF

End point of the curve.

Returns

The current path.

Applies to

QuadTo(Single, Single, Single, Single)

Source:
PathF.cs
Source:
PathF.cs
Source:
PathF.cs

Adds a quadratic Bézier curve segment using coordinate values.

public:
 Microsoft::Maui::Graphics::PathF ^ QuadTo(float cx, float cy, float x, float y);
public Microsoft.Maui.Graphics.PathF QuadTo(float cx, float cy, float x, float y);
member this.QuadTo : single * single * single * single -> Microsoft.Maui.Graphics.PathF
Public Function QuadTo (cx As Single, cy As Single, x As Single, y As Single) As PathF

Parameters

cx
Single

X-coordinate of the control point.

cy
Single

Y-coordinate of the control point.

x
Single

X-coordinate of the end point.

y
Single

Y-coordinate of the end point.

Returns

The current path.

Applies to