Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 614 Bytes

excel.delRow.md

File metadata and controls

23 lines (18 loc) · 614 Bytes

Excel.delRow

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

Sample

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

API

Calling Returning
excel. delRow ( sheetName, startRow ) Excel
excel. delRow ( sheetName, startRow, n ) Excel
Parameters Type Description
sheetName String The sheet name.
startRow Number The row index from which rows will be deleted. Indexed from 0.
n Number The number of rows to be deleted. The default value is 1.