AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="0.9.11" />

.NET API 1,230,848 bytes

 CssBackgroundAttachmentProperty

More information available at: https://developer.mozilla.org/en-US/docs/Web/CSS/background-attachment Gets an enumeration with the desired attachment settings.
using AngleSharp.Css; using AngleSharp.Extensions; namespace AngleSharp.Dom.Css { internal sealed class CssBackgroundAttachmentProperty : CssProperty { private static readonly IValueConverter AttachmentConverter = Converters.BackgroundAttachmentConverter.FromList().OrDefault(BackgroundAttachment.Scroll); internal override IValueConverter Converter => AttachmentConverter; internal CssBackgroundAttachmentProperty() : base(PropertyNames.BackgroundAttachment, PropertyFlags.None) { } } }