AngleSharp by Florian Rappl

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

.NET API 479,232 bytes

 HTMLTableSectionElement

public sealed class HTMLTableSectionElement : HTMLElement
Represents the object for HTML table section (thead / tbody / tfoot) elements.
public HorizontalAlignment Align { get; set; }

Gets or sets the value of the horizontal alignment attribute.

public HTMLCollection Rows { get; }

Gets the assigned table rows.

public VerticalAlignment VAlign { get; set; }

Gets or sets the value of the vertical alignment attribute.

Deletes a row from this section.

public HTMLTableRowElement InsertRow(int index)

Inserts a row into this section. The new row is inserted immediately before the current indexth row in this section. If index is -1 or equal to the number of rows in this section, the new row is appended.