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) · 797 Bytes

excel.addRow.md

File metadata and controls

26 lines (20 loc) · 797 Bytes

Excel.addRow

The addRow function is established to add rows in a sheet.

Sample

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

API

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