AngleSharp by Florian Rappl

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

.NET API 504,832 bytes

 HTMLTableCaptionElement

public sealed class HTMLTableCaptionElement : HTMLElement
Represents the HTML caption element.
namespace AngleSharp.DOM.Html { [DOM("HTMLTableCaptionElement")] public sealed class HTMLTableCaptionElement : HTMLElement { public enum CaptionAlignment { Top, Bottom, Left, Right } internal const string Tag = "caption"; [DOM("align")] public CaptionAlignment Align { get { return Element.ToEnum(GetAttribute("align"), CaptionAlignment.Top); } set { SetAttribute("align", value.ToString()); } } protected internal override bool IsSpecial => true; internal HTMLTableCaptionElement() { _name = "caption"; } } }