SVGEllipseElementBuilder Class

SVGEllipseElementBuilder class

Builder class for constructing an SVG ’ellipse’ element, which is used to draw ellipses within SVG graphics. It enables the building of content within the ’ellipse’ element and provides methods to set various attributes specific to the ’ellipse’ element in SVG.

public class SVGEllipseElementBuilder : SVGElementBuilder<SVGEllipseElement>, 
    IAnimationElementBuilder, IDescriptiveElementBuilder, IPaintServerElementBuilder, 
    IShapeAttributeSetter, IShapeContentElementBuilder

Constructors

NameDescription
SVGEllipseElementBuilder()The default constructor.

Properties

NameDescription
Configurations { get; }

Methods

NameDescription
Attribute(string, string)
virtual Build(Document)
virtual Build(SVGEllipseElement)
BuildElement(Document)
Cx(double, LengthType)Sets the ‘cx’ attribute of the SVG ’ellipse’ element, specifying the x-coordinate of the center of the ellipse.
Cy(double, LengthType)Sets the ‘cy’ attribute of the SVG ’ellipse’ element, specifying the y-coordinate of the center of the ellipse.
Rx(double, LengthType)Sets the ‘rx’ attribute of the SVG ’ellipse’ element, specifying the horizontal radius of the ellipse.
Ry(double, LengthType)Sets the ‘ry’ attribute of the SVG ’ellipse’ element, specifying the vertical radius of the ellipse.

See Also