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