AngleSharp by Florian Rappl

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

.NET API 886,784 bytes

 HTMLTableSectionElement

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 IHtmlCollection Rows { get; }

Gets the assigned table rows.

public VerticalAlignment VAlign { get; set; }

Gets or sets the value of the vertical alignment attribute.

public IHtmlElement InsertRowAt(int index = -1)

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.

public void RemoveRowAt(int index)

Deletes a row from this section.