Get all cells of a row

Hello, how can i get all cells in a row ?

image.png (6.9 KB)

Thanks for your help

@bNj,

Thanks for query and screenshot.

See the following code segment for your reference:
e.g
Sample code:


IEnumerator enumerator = row.GetEnumerator();
while (enumerator.MoveNext())
{
var cell = enumerator.Current as Aspose.Cells.Cell;
Console.WriteLine(cell.Value);

}  

Hope, this helps a bit.

1 Like

Thanks for your quick reply, it was exacly what i was looking for !

@bNj,

Good to know that the suggested code figures out your issue now. Feel free to contact us any time if you need further help or have other queries or issue, we will be happy to assist you soon.