AngleSharp by Florian Rappl

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

.NET API 844,288 bytes

 HTMLTableColElement

Represents the HTML column (col / colgroup) element.
using AngleSharp.DOM.Css; namespace AngleSharp.DOM.Html { internal sealed class HTMLTableColElement : HTMLElement, IHtmlTableColumnElement, IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, IElementCssInlineStyle { public HorizontalAlignment Align { get { return GetAttribute(AttributeNames.Align).ToEnum(HorizontalAlignment.Center); } set { SetAttribute(AttributeNames.Align, value.ToString()); } } public int Span { get { return GetAttribute(AttributeNames.Span).ToInteger(0); } set { SetAttribute(AttributeNames.Span, value.ToString()); } } public VerticalAlignment VAlign { get { return GetAttribute(AttributeNames.Valign).ToEnum(VerticalAlignment.Middle); } set { SetAttribute(AttributeNames.Valign, value.ToString()); } } public string Width { get { return GetAttribute(AttributeNames.Width); } set { SetAttribute(AttributeNames.Width, value); } } protected internal override bool IsSpecial => true; internal HTMLTableColElement() { _name = "col"; } } }