If I read the docs correctly, it appears the quickest way to get data from cells is to use a for in loop against the TsWorkSheet.Cells. Something like:
for Cell in Sheet.Cells do
My question is, is there a guarantee ordering? For example will this return cells by row by col? In other words, row 0 cols 0 thru n in order then row 1, cells 0 thru n and so on.
Or, is there no guarantee of ordering? It depends on the spreadsheet?