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

Latest commit

 

History

History
27 lines (20 loc) · 955 Bytes

excel.new.md

File metadata and controls

27 lines (20 loc) · 955 Bytes

new Excel

The constructor function is established to open an existed excel file. Even you want to create new excel file, you must create it from a template file.

Sample

	var excelHSSF = new Excel("small.xls");
	var excelXSSF = new Excel("small.xlsx");
	var excelSXSSF = new Excel("large.xlsx" , true);

API

CallingReturning
new Excel ( path )Excel
new Excel ( path , isLarge )Excel
ParametersTypeDescription
pathStringThe excel file path relatived to the storage folder.
isLargeBooleanIf the value is true, the excel file can be operated with very large data. Please pay attention to the details about SXSSF.