Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 795 Bytes

excel.delRow.md

File metadata and controls

27 lines (20 loc) · 795 Bytes

Excel.delRow

The delRow function is established to delete rows in a sheet.

Sample

var excel = new Excel("test.xlsx");
excel.delRow("mySheet,0);
excel.delRow("mySheet,1,10);

API

CallingReturning
Excel . delRow ( sheetName , startRow)Excel
Excel . delRow ( sheetName , startRow , n)Excel
ParametersTypeDescription
sheetNameStringThe sheet name.
startRowNumberThe row index where rows will be deleted from it. Indexed from 0.
nNumberThe row count to be deleted. The default value is 1.