createSVGPathSegCurvetoQuadraticAbs method
Returns a stand-alone, parentless SVGPathSegCurvetoQuadraticAbs object.
![]() ![]() |
Syntax
ISVGPathSegCurvetoQuadraticAbs retVal = object.createSVGPathSegCurvetoQuadraticAbs(x, y, x1, y1);
Parameters
- x [in]
-
Type: float
The absolute x-coordinate for the end point of this path segment.
- y [in]
-
Type: float
The absolute y-coordinate for the end point of this path segment.
- x1 [in]
-
Type: float
The absolute x-coordinate for the first control point.
- y1 [in]
-
Type: float
The absolute y-coordinate for the first control point.
Standards information
- Scalable Vector Graphics: Paths, Section 8.5.23
Remarks
Returns a stand-alone, parentless quadratic Bézier curve that is drawn from the current point to the specified point by using the specified control point and absolute coordinates.
Show:

