编程语言
首页 > 编程语言> > c# – 使用SpreadsheetLight进行行计数

c# – 使用SpreadsheetLight进行行计数

作者:互联网

我正在寻找一个类似于DataTable.Rows.Count的函数,它可以与SLDocument一起使用,以找出有多少行包含数据. SpreadsheetLight中有可用的东西吗?实现这一目标的任何其他方法?

-Brendan

解决方法:

SLWorksheetStatistics stats1 = firstdoc.GetWorksheetStatistics();


for (int j = 1; j < stats1.EndRowIndex; j++)
{
    var value = firstdoc.GetCellValueAsString(0, j)  ;

}

标签:c,visual-studio,excel,spreadsheetlight
来源: https://codeday.me/bug/20190611/1222203.html