AngleSharp by Florian Rappl

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

.NET API 844,288 bytes

 HTMLTableRowElement

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

Gets the assigned table cells.

public int Index { get; }

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

public int IndexInSection { 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 IHtmlElement InsertCellAt(int index = -1)

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

public void RemoveCellAt(int index)

Deletes a cell from the current row.