[]
Represents a 'ellipse' element in the DOM.
public class SvgEllipseElement : SvgGeometryElement
Initializes a new instance of the SvgEllipseElement class.
public SvgEllipseElement()
Gets the SVG name of SvgEllipseElement.
public const string SvgName = "ellipse"
Gets or sets the horizontal center coordinate.
public SvgLength? CenterX { get; set; }
Gets or sets the vertical center coordinate.
public SvgLength? CenterY { get; set; }
Gets the SVG name of the current element.
public override string ElementName { get; }
Gets or sets the horizontal radius.
public SvgLength? RadiusX { get; set; }
Gets or sets the vertical radius.
public SvgLength? RadiusY { get; set; }