LastRow
Table.LastRow property
Sonuncuyu döndürürRow
tablodaki düğüm.
public Row LastRow { get; }
Örnekler
Bir belgedeki tüm tabloların ilk ve son satırlarının nasıl kaldırılacağını gösterir.
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);
Ayrıca bakınız
- class Row
- class Table
- ad alanı Aspose.Words.Tables
- toplantı Aspose.Words