AngleSharp by AngleSharp

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

.NET API 1,204,224 bytes

 HtmlTableColElement

Represents the HTML column element.
using AngleSharp.Dom.Css; using AngleSharp.Dom.Events; using AngleSharp.Extensions; using AngleSharp.Html; namespace AngleSharp.Dom.Html { internal sealed class HtmlTableColElement : HtmlElement, IHtmlTableColumnElement, IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IGlobalEventHandlers { public HorizontalAlignment Align { get { return this.GetOwnAttribute(AttributeNames.Align).ToEnum(HorizontalAlignment.Center); } set { this.SetOwnAttribute(AttributeNames.Align, value.ToString(), false); } } public int Span { get { return this.GetOwnAttribute(AttributeNames.Span).ToInteger(0); } set { this.SetOwnAttribute(AttributeNames.Span, value.ToString(), false); } } public VerticalAlignment VAlign { get { return this.GetOwnAttribute(AttributeNames.Valign).ToEnum(VerticalAlignment.Middle); } set { this.SetOwnAttribute(AttributeNames.Valign, value.ToString(), false); } } public string Width { get { return this.GetOwnAttribute(AttributeNames.Width); } set { this.SetOwnAttribute(AttributeNames.Width, value, false); } } public HtmlTableColElement(Document owner, string prefix = null) : base(owner, TagNames.Col, prefix, NodeFlags.SelfClosing | NodeFlags.Special) { } } }