AngleSharp by AngleSharp

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

.NET API 1,214,976 bytes

 CssVisibilityProperty

Information can be found on MDN: https://developer.mozilla.org/en-US/docs/Web/CSS/visibility Gets the visibility mode.
using AngleSharp.Css; using AngleSharp.Extensions; namespace AngleSharp.Dom.Css { internal sealed class CssVisibilityProperty : CssProperty { private static readonly IValueConverter StyleConverter = Converters.VisibilityConverter.OrDefault(Visibility.Visible); internal override IValueConverter Converter => StyleConverter; internal CssVisibilityProperty() : base(PropertyNames.Visibility, PropertyFlags.Inherited | PropertyFlags.Animatable) { } } }