GetEnumerator
RowCollection.GetEnumerator method
Ottiene un enumeratore che scorre questa raccolta
public IEnumerator GetEnumerator()
Valore di ritorno
enumeratore
Esempi
[C#]
Workbook workbook = new Workbook("template.xlsx");
Cells cells = workbook.Worksheets[0].Cells;
IEnumerator en = cells.Rows.GetEnumerator();
while (en.MoveNext())
{
Row row = (Row)en.Current;
Console.WriteLine(row.Index + ": " + row.Height);
}
Guarda anche
- class RowCollection
- spazio dei nomi Aspose.Cells
- assemblea Aspose.Cells