LastRow

Table.LastRow property

Restituisce l’ultimoRow nodo nella tabella.

public Row LastRow { get; }

Esempi

Mostra come rimuovere la prima e l’ultima riga di tutte le tabelle in un documento.

Document doc = new Document(MyDir + "Tables.docx");

TableCollection tables = doc.FirstSection.Body.Tables;

Assert.AreEqual(5, tables[0].Rows.Count);
Assert.AreEqual(4, tables[1].Rows.Count);

foreach (Table table in tables.OfType<Table>())
{
    table.FirstRow?.Remove();
    table.LastRow?.Remove();
}

Assert.AreEqual(3, tables[0].Rows.Count);
Assert.AreEqual(2, tables[1].Rows.Count);

Guarda anche