本文介绍了SpreadsheetLight的行数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在寻找一个类似于DataTable.Rows.Count的函数,该函数可以与SLDocument一起使用,以找出其中有数据的行数. SpreadsheetLight中有可用的东西吗?还有其他方法可以做到这一点吗?

I'm looking for a function similar to DataTable.Rows.Count that can be used with an SLDocument to find out how many rows have data in them. Is there something available in SpreadsheetLight? Any other methods of achieving this?

-布伦丹

推荐答案

SLWorksheetStatistics stats1 = firstdoc.GetWorksheetStatistics();


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

}

这篇关于SpreadsheetLight的行数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 02:30