[]
Represents the 'linearGradient' element.
public class SvgLinearGradientElement : SvgGradientElement
Initializes a new instance of the SvgLinearGradientElement class.
public SvgLinearGradientElement()
Gets the SVG name of SvgLinearGradientElement.
public const string SvgName = "linearGradient"
Gets the SVG name of the current element.
public override string ElementName { get; }
Gets or sets the horizontal coordinate of the first point for the linear gradient.
public SvgLength? X1 { get; set; }
Gets or sets the horizontal coordinate of the second point for the linear gradient.
public SvgLength? X2 { get; set; }
Gets or sets the vertical coordinate of the first point for the linear gradient.
public SvgLength? Y1 { get; set; }
Gets or sets the vertical coordinate of the second point for the linear gradient.
public SvgLength? Y2 { get; set; }