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