PreviousRow
Innehåll
[
Dölj
]Row.PreviousRow property
Hämtar föregåendeRow
nod.
public Row PreviousRow { get; }
Anmärkningar
Metoden kan användas när du behöver ha maskinskriven åtkomst till tabellrader. Om a StructuredDocumentTag
noden hittas i en tabell istället för en rad, den korsas automatiskt för att få en rad som finns inom.
Exempel
Visar hur man räknar upp alla tabellceller.
Document doc = new Document(MyDir + "Tables.docx");
Table table = doc.FirstSection.Body.Tables[0];
// Räkna upp genom alla celler i tabellen.
for (Row row = table.FirstRow; row != null; row = row.NextRow)
{
for (Cell cell = row.FirstCell; cell != null; cell = cell.NextCell)
{
Console.WriteLine(cell.GetText());
}
}
Se även
- class Row
- namnutrymme Aspose.Words.Tables
- hopsättning Aspose.Words