Tables
Story.Tables property
Ottiene una raccolta di tabelle che sono figli immediati della storia.
public TableCollection Tables { 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
- class TableCollection
- class Story
- spazio dei nomi Aspose.Words
- assemblea Aspose.Words