[]
Corresponds to the 'line' element in the DOM.
public class SvgLineElement : SvgGeometryElement
Initializes a new instance of the SvgLineElement class.
public SvgLineElement()
Gets the SVG name of SvgLineElement.
public const string SvgName = "line"
Gets the SVG name of the current element.
public override string ElementName { get; }
Gets or sets the horizontal coordinate of the first point.
public SvgLength? X1 { get; set; }
Gets or sets the horizontal coordinate of the second point.
public SvgLength? X2 { get; set; }
Gets or sets the vertical coordinate of the first point.
public SvgLength? Y1 { get; set; }
Gets or sets the vertical coordinate of the second point.
public SvgLength? Y2 { get; set; }