修复了打表没有从第6行开始的问题

This commit is contained in:
2026-03-11 14:36:44 +08:00
parent 1cf8f41644
commit 3583b7bf83
+1 -1
View File
@@ -79,7 +79,7 @@ namespace ExcelTool
}
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);
if (row == null) continue;