SVGPathElementCreateSVGPathSegCurvetoCubicSmoothAbs Method |
Returns a stand-alone, parentless SVGPathSegCurvetoCubicSmoothAbs object.
Namespace: Aspose.Html.Dom.SvgAssembly: Aspose.HTML (in Aspose.HTML.dll) Version: 22.4
Syntaxpublic SVGPathSegCurvetoCubicSmoothAbs CreateSVGPathSegCurvetoCubicSmoothAbs(
float x,
float y,
float x2,
float y2
)
Public Function CreateSVGPathSegCurvetoCubicSmoothAbs (
x As Single,
y As Single,
x2 As Single,
y2 As Single
) As SVGPathSegCurvetoCubicSmoothAbs
public:
SVGPathSegCurvetoCubicSmoothAbs^ CreateSVGPathSegCurvetoCubicSmoothAbs(
float x,
float y,
float x2,
float y2
)
member CreateSVGPathSegCurvetoCubicSmoothAbs :
x : float32 *
y : float32 *
x2 : float32 *
y2 : float32 -> SVGPathSegCurvetoCubicSmoothAbs
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. - 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:
SVGPathSegCurvetoCubicSmoothAbsA stand-alone, parentless SVGPathSegCurvetoCubicSmoothAbs object.
See Also