SVGPathElement.CreateSVGPathSegArcAbs

SVGPathElement.CreateSVGPathSegArcAbs method

Returns a stand-alone, parentless SVGPathSegArcAbs object.

public SVGPathSegArcAbs CreateSVGPathSegArcAbs(float x, float y, float r1, float r2, float angle, 
    bool largeArcFlag, bool sweepFlag)
ParameterTypeDescription
xSingleThe absolute X coordinate for the end point of this path segment.
ySingleThe absolute 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 SVGPathSegArcAbs object.

See Also