AngleSharp by AngleSharp

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

.NET API 886,272 bytes

 IHtmlTableRowElement

Represents the tr HTML element.

Gets the assigned table cells.

int Index { get; }

Gets the index in the logical order and not in document order.

int IndexInSection { get; }

Gets the index of this row, relative to the current section starting from 0.

IHtmlTableCellElement InsertCellAt(int index = -1, TableCellKind tableCellKind = 0)

Insert an empty TD or TH cell into this row. If index is -1 or equal to the number of cells, the new cell is appended.

void RemoveCellAt(int index)

Deletes a cell from the current row.