修复了打表没有从第6行开始的问题
This commit is contained in:
@@ -79,7 +79,7 @@ namespace ExcelTool
|
|||||||
}
|
}
|
||||||
ISheet sheet = wk.GetSheetAt(sheetNum);
|
ISheet sheet = wk.GetSheetAt(sheetNum);
|
||||||
|
|
||||||
for (int i = 6; i <= sheet.LastRowNum; i++)
|
for (int i = 5; i <= sheet.LastRowNum; i++)
|
||||||
{
|
{
|
||||||
IRow row = sheet.GetRow(i);
|
IRow row = sheet.GetRow(i);
|
||||||
if (row == null) continue;
|
if (row == null) continue;
|
||||||
|
|||||||
Reference in New Issue
Block a user