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