AngleSharp by Florian Rappl

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

.NET API 1,172,480 bytes

 IHtmlTableElement

Represents the table HTML element.
using AngleSharp.Attributes; using AngleSharp.Dom.Css; namespace AngleSharp.Dom.Html { [DomName("HTMLTableElement")] public interface IHtmlTableElement : IHtmlElement, IElement, INode, IEventTarget, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle { [DomName("caption")] IHtmlTableCaptionElement Caption { get; set; } [DomName("tHead")] IHtmlTableSectionElement Head { get; set; } [DomName("tFoot")] IHtmlTableSectionElement Foot { get; set; } [DomName("tBodies")] IHtmlCollection Bodies { get; } [DomName("rows")] IHtmlCollection Rows { get; } [DomName("border")] uint Border { get; set; } [DomName("createCaption")] IHtmlElement CreateCaption(); [DomName("deleteCaption")] void DeleteCaption(); [DomName("createTHead")] IHtmlElement CreateHead(); [DomName("deleteTHead")] void DeleteHead(); [DomName("createTFoot")] IHtmlElement CreateFoot(); [DomName("deleteTFoot")] void DeleteFoot(); [DomName("createTBody")] IHtmlElement CreateBody(); [DomName("insertRow")] IHtmlElement InsertRowAt(int index = -1); [DomName("deleteRow")] void RemoveRowAt(int index); } }