[]
Represents a 'circle' element in the DOM.
public class SvgCircleElement : SvgGeometryElement
Initializes a new instance of the SvgCircleElement class.
public SvgCircleElement()
Gets the SVG name of SvgCircleElement.
public const string SvgName = "circle"
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 radius of the 'circle' element.
public SvgLength? Radius { get; set; }