SVGPathElement.CreateSVGPathSegArcRel

SVGPathElement.CreateSVGPathSegArcRel method

Returns a stand-alone, parentless SVGPathSegArcRel object.

public SVGPathSegArcRel CreateSVGPathSegArcRel(float x, float y, float r1, float r2, float angle, 
    bool largeArcFlag, bool sweepFlag)
ParameterTypeDescription
xSingleThe relative X coordinate for the end point of this path segment.
ySingleThe relative Y coordinate for the end point of this path segment.
r1SingleThe x-axis radius for the ellipse (i.e., r1).
r2SingleThe y-axis radius for the ellipse (i.e., r2).
angleSingleThe rotation angle in degrees for the ellipse’s x-axis relative to the x-axis of the user coordinate system.
largeArcFlagBooleanThe value of the large-arc-flag parameter.
sweepFlagBooleanThe value of the large-arc-flag parameter.

Return Value

A stand-alone, parentless SVGPathSegArcRel object.

See Also