SVGPathElementCreateSVGPathSegCurvetoCubicAbs Method |
Returns a stand-alone, parentless SVGPathSegCurvetoCubicAbs object.
Namespace: Aspose.Html.Dom.SvgAssembly: Aspose.HTML (in Aspose.HTML.dll) Version: 22.4
Syntaxpublic SVGPathSegCurvetoCubicAbs CreateSVGPathSegCurvetoCubicAbs(
float x,
float y,
float x1,
float y1,
float x2,
float y2
)
Public Function CreateSVGPathSegCurvetoCubicAbs (
x As Single,
y As Single,
x1 As Single,
y1 As Single,
x2 As Single,
y2 As Single
) As SVGPathSegCurvetoCubicAbs
public:
SVGPathSegCurvetoCubicAbs^ CreateSVGPathSegCurvetoCubicAbs(
float x,
float y,
float x1,
float y1,
float x2,
float y2
)
member CreateSVGPathSegCurvetoCubicAbs :
x : float32 *
y : float32 *
x1 : float32 *
y1 : float32 *
x2 : float32 *
y2 : float32 -> SVGPathSegCurvetoCubicAbs
Parameters
- x
- Type: SystemSingle
The absolute X coordinate for the end point of this path segment. - y
- Type: SystemSingle
The absolute Y coordinate for the end point of this path segment. - x1
- Type: SystemSingle
The absolute X coordinate for the first control point. - y1
- Type: SystemSingle
The absolute Y coordinate for the first control point. - x2
- Type: SystemSingle
The absolute X coordinate for the second control point. - y2
- Type: SystemSingle
The absolute Y coordinate for the second control point.
Return Value
Type:
SVGPathSegCurvetoCubicAbsA stand-alone, parentless SVGPathSegCurvetoCubicAbs object.
See Also