[]
Represents a gradient stop element.
public class SvgStopElement : SvgElement
Initializes a new instance of the SvgStopElement class.
public SvgStopElement()
Gets the SVG name of SvgStopElement.
public const string SvgName = "stop"
Gets the SVG name of the current element.
public override string ElementName { get; }
Gets or sets the position where the gradient stop is placed.
public float? Offset { get; set; }
Gets or sets an SvgColor indicating what color to use at that gradient stop.
public SvgColor? StopColor { get; set; }
Gets or sets a value that defines the opacity of a given gradient stop.
public float? StopOpacity { get; set; }