GetEnumerator

Row.GetEnumerator method

Ottiene l’enumeratore di celle

public IEnumerator GetEnumerator()

Valore di ritorno

L’enumeratore di celle

Esempi

[C#]
Workbook workbook = new Workbook("template.xlsx");
Cells cells = workbook.Worksheets[0].Cells;

IEnumerator en = cells.Rows[1].GetEnumerator();
while (en.MoveNext())
{
    Cell cell = (Cell)en.Current;
    Console.WriteLine(cell.Name + ": " + cell.Value);
}

Guarda anche