NextRow

Row.NextRow property

Får nästaRow nod.

public Row NextRow { get; }

Anmärkningar

Metoden kan användas när du behöver ha maskinskriven åtkomst till tabellrader. Om a StructuredDocumentTagnoden 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