Skip to content
This repository has been archived by the owner on Oct 6, 2022. It is now read-only.

Latest commit

 

History

History
26 lines (20 loc) · 792 Bytes

excel.delRow.md

File metadata and controls

26 lines (20 loc) · 792 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.