[]
Represents a 'rect' element in the DOM.
public class SvgRectElement : SvgGeometryElement
Initializes a new instance of the SvgRectElement class.
public SvgRectElement()
Gets the SVG name of SvgRectElement.
public const string SvgName = "rect"
Gets the SVG name of the current element.
public override string ElementName { get; }
Gets or sets the content height.
public SvgLength? Height { get; set; }
Gets or sets the maximum content height.
public SvgLength? MaxHeight { get; set; }
Gets or sets the maximum content width.
public SvgLength? MaxWidth { get; set; }
Gets or sets the minimum content height.
public SvgLength? MinHeight { get; set; }
Gets or sets the minimum content width.
public SvgLength? MinWidth { get; set; }
Gets or sets the horizontal radius.
public SvgLength? RadiusX { get; set; }
Gets or sets the vertical radius.
public SvgLength? RadiusY { get; set; }
Gets or sets the content width.
public SvgLength? Width { get; set; }
Gets or sets the horizontal coordinate.
public SvgLength? X { get; set; }
Gets or sets the vertical coordinate.
public SvgLength? Y { get; set; }