CssStrokeDasharrayProperty
Information can be found on MDN:
https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/stroke-dasharray
Gets the value that should be used for the stroke-dasharray.
using AngleSharp.Css;
namespace AngleSharp.Dom.Css
{
internal sealed class CssStrokeDasharrayProperty : CssProperty
{
private static readonly IValueConverter StyleConverter = Converters.StrokeDasharrayConverter;
internal override IValueConverter Converter => StyleConverter;
public CssStrokeDasharrayProperty()
: base(PropertyNames.StrokeDasharray, PropertyFlags.Unitless | PropertyFlags.Animatable)
{
}
}
}