AngleSharp by Florian Rappl

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

.NET API 1,174,016 bytes

 IHtmlTableElement

Represents the table HTML element.

Gets the assigned body sections.

uint Border { get; set; }

Gets or sets the border attribute.

Gets or sets the assigned caption element.

Gets or sets the assigned foot section.

Gets or sets the assigned head section.

Gets the assigned table rows.

Creates a new table body section.

Creates a new table caption object or returns the existing one.

Creates a table footer section or returns an existing one.

Creates a new table header section or returns the existing one.

Deletes the table caption, if one exists.

void DeleteFoot()

Deletes the footer from the table, if one exists.

void DeleteHead()

Deletes the header from the table, if one exists.

Inserts a new empty row in the table. The new row is inserted immediately before and in the same section as the current indexth row in the table. If index is -1 or equal to the number of rows, the new row is appended. In addition, when the table is empty the row is inserted into a TBODY which is created and inserted into the table.

void RemoveRowAt(int index)

Deletes a table row.