AngleSharp by Florian Rappl

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

.NET API 465,920 bytes

 HTMLTableRowElement

public sealed class HTMLTableRowElement : HTMLElement
Represents the HTML tr element.
public HorizontalAlignment Align { get; set; }

Gets or sets the value of the alignment attribute.

public string BgColor { get; set; }

Gets or sets the value of the background color attribute.

public HTMLCollection Cells { get; }

Gets the assigned table cells.

public int RowIndex { get; }

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

public int SectionRowIndex { get; }

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

public VerticalAlignment VAlign { get; set; }

Gets or sets the value of the vertical alignment attribute.

public HTMLTableRowElement DeleteCell(int index)

Deletes a cell from the current row.

public HTMLTableCellElement InsertCell(int index)

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