[]
        
(Showing Draft Content)

GrapeCity.Documents.Svg.SvgPathBuilder.AddQuadraticBezierCurveTo

AddQuadraticBezierCurveTo Method

AddQuadraticBezierCurveTo(bool, float, float, float, float)

Adds the "quadratic Bézier curveto" command to the path.

Declaration
public void AddQuadraticBezierCurveTo(bool relative, float x1, float y1, float x, float y)
Public Sub AddQuadraticBezierCurveTo(relative As Boolean, x1 As Single, y1 As Single, x As Single, y As Single)
Parameters
Type Name Description
bool relative

Indicates whether the command uses absolute (false) or relative (true) coordinates.

float x1

The X-coordinate of the control point.

float y1

The Y-coordinate of the control point.

float x

The X-coordinate of the destination point.

float y

The Y-coordinate of the destination point.