NextCell

Cell.NextCell property

Ottiene il successivoCell nodo.

public Cell NextCell { get; }

Osservazioni

Il metodo può essere utilizzato quando è necessario avere accesso digitato alle celle di aRow . Se a StructuredDocumentTag un nodo viene trovato in una riga invece che in una cella, viene automaticamente attraversato per ottenere una cella contenuta all’interno.

Esempi

Mostra come enumerare tutte le celle della tabella.

Document doc = new Document(MyDir + "Tables.docx");
Table table = doc.FirstSection.Body.Tables[0];

// Enumera tutte le celle della tabella.
for (Row row = table.FirstRow; row != null; row = row.NextRow)
{
    for (Cell cell = row.FirstCell; cell != null; cell = cell.NextCell)
    {
        Console.WriteLine(cell.GetText());
    }
}

Guarda anche