Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 958 Bytes

excel.new.md

File metadata and controls

28 lines (20 loc) · 958 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.