ToArray
Contenuti
[
Nascondere
]RowCollection.ToArray method
Copia tutte le righe dalla raccolta in un nuovo array di righe.
public Row[] ToArray()
Valore di ritorno
Una matrice di righe.
Esempi
Mostra come scorrere tutte le tabelle del documento e stampare il contenuto di ciascuna cella.
Document doc = new Document(MyDir + "Tables.docx");
TableCollection tables = doc.FirstSection.Body.Tables;
Assert.AreEqual(2, tables.ToArray().Length);
for (int i = 0; i < tables.Count; i++)
{
Console.WriteLine($"Start of Table {i}");
RowCollection rows = tables[i].Rows;
// Possiamo usare il metodo "ToArray" su una raccolta di righe per clonarla in un array.
Assert.AreEqual(rows, rows.ToArray());
Assert.AreNotSame(rows, rows.ToArray());
for (int j = 0; j < rows.Count; j++)
{
Console.WriteLine($"\tStart of Row {j}");
CellCollection cells = rows[j].Cells;
// Possiamo utilizzare il metodo "ToArray" su una raccolta di celle per clonarla in un array.
Assert.AreEqual(cells, cells.ToArray());
Assert.AreNotSame(cells, cells.ToArray());
for (int k = 0; k < cells.Count; k++)
{
string cellText = cells[k].ToString(SaveFormat.Text).Trim();
Console.WriteLine($"\t\tContents of Cell:{k} = \"{cellText}\"");
}
Console.WriteLine($"\tEnd of Row {j}");
}
Console.WriteLine($"End of Table {i}\n");
}
Guarda anche
- class Row
- class RowCollection
- spazio dei nomi Aspose.Words.Tables
- assemblea Aspose.Words