AngleSharp by Florian Rappl

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

.NET API 446,976 bytes

 HTMLTableCaptionElement

public sealed class HTMLTableCaptionElement : HTMLElement
Represents the HTML caption element.
namespace AngleSharp.DOM.Html { 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"; } } }