c# - Row count with SpreadsheetLight -


i'm looking function similar datatable.rows.count can used sldocument find out how many rows have data in them. there available in spreadsheetlight? other methods of achieving this?

-brendan

slworksheetstatistics stats1 = firstdoc.getworksheetstatistics();   (int j = 1; j < stats1.endrowindex; j++) {     var value = firstdoc.getcellvalueasstring(0, j)  ;  } 

Comments