This commit is contained in:
Looly
2020-11-09 10:24:09 +08:00
parent ab410d2e93
commit 37dda15906
5 changed files with 16 additions and 3 deletions

View File

@@ -392,6 +392,15 @@ public class ExcelWriter extends ExcelBase<ExcelWriter> {
return this;
}
/**
* 定位到最后一行的后边,用于追加数据
* @return this
* @since 5.5.0
*/
public ExcelWriter setCurrentRowToEnd(){
return setCurrentRow(getRowCount());
}
/**
* 跳过当前行
*