Update docs and typo fixed

formula
xuri 5 years ago
parent 5221729bc3
commit 15fd56853f
No known key found for this signature in database
GPG Key ID: BA5E5BB1C948EDF7

@ -3,9 +3,11 @@
// the LICENSE file. // the LICENSE file.
// //
// Package excelize providing a set of functions that allow you to write to // Package excelize providing a set of functions that allow you to write to
// and read from XLSX files. Support reads and writes XLSX file generated by // and read from XLSX / XLSM / XLTM files. Supports reading and writing
// Microsoft Excel™ 2007 and later. Support save file without losing original // spreadsheet documents generated by Microsoft Exce™ 2007 and later. Supports
// charts of XLSX. This library needs Go version 1.10 or later. // complex components by high compatibility, and provided streaming API for
// generating or reading data from a worksheet with huge amounts of data. This
// library needs Go version 1.10 or later.
package excelize package excelize

@ -3,9 +3,11 @@
// the LICENSE file. // the LICENSE file.
// //
// Package excelize providing a set of functions that allow you to write to // Package excelize providing a set of functions that allow you to write to
// and read from XLSX files. Support reads and writes XLSX file generated by // and read from XLSX / XLSM / XLTM files. Supports reading and writing
// Microsoft Excel™ 2007 and later. Support save file without losing original // spreadsheet documents generated by Microsoft Exce™ 2007 and later. Supports
// charts of XLSX. This library needs Go version 1.10 or later. // complex components by high compatibility, and provided streaming API for
// generating or reading data from a worksheet with huge amounts of data. This
// library needs Go version 1.10 or later.
package excelize package excelize

@ -3,9 +3,11 @@
// the LICENSE file. // the LICENSE file.
// //
// Package excelize providing a set of functions that allow you to write to // Package excelize providing a set of functions that allow you to write to
// and read from XLSX files. Support reads and writes XLSX file generated by // and read from XLSX / XLSM / XLTM files. Supports reading and writing
// Microsoft Excel™ 2007 and later. Support save file without losing original // spreadsheet documents generated by Microsoft Exce™ 2007 and later. Supports
// charts of XLSX. This library needs Go version 1.10 or later. // complex components by high compatibility, and provided streaming API for
// generating or reading data from a worksheet with huge amounts of data. This
// library needs Go version 1.10 or later.
package excelize package excelize

@ -3,9 +3,11 @@
// the LICENSE file. // the LICENSE file.
// //
// Package excelize providing a set of functions that allow you to write to // Package excelize providing a set of functions that allow you to write to
// and read from XLSX files. Support reads and writes XLSX file generated by // and read from XLSX / XLSM / XLTM files. Supports reading and writing
// Microsoft Excel™ 2007 and later. Support save file without losing original // spreadsheet documents generated by Microsoft Exce™ 2007 and later. Supports
// charts of XLSX. This library needs Go version 1.10 or later. // complex components by high compatibility, and provided streaming API for
// generating or reading data from a worksheet with huge amounts of data. This
// library needs Go version 1.10 or later.
package excelize package excelize

@ -3,9 +3,11 @@
// the LICENSE file. // the LICENSE file.
// //
// Package excelize providing a set of functions that allow you to write to // Package excelize providing a set of functions that allow you to write to
// and read from XLSX files. Support reads and writes XLSX file generated by // and read from XLSX / XLSM / XLTM files. Supports reading and writing
// Microsoft Excel™ 2007 and later. Support save file without losing original // spreadsheet documents generated by Microsoft Exce™ 2007 and later. Supports
// charts of XLSX. This library needs Go version 1.10 or later. // complex components by high compatibility, and provided streaming API for
// generating or reading data from a worksheet with huge amounts of data. This
// library needs Go version 1.10 or later.
package excelize package excelize

@ -129,7 +129,7 @@ func TestGetColsError(t *testing.T) {
cols.totalRow = 2 cols.totalRow = 2
cols.totalCol = 2 cols.totalCol = 2
cols.curCol = 1 cols.curCol = 1
cols.decoder = []byte(`<worksheet><sheetData><row r="1"><c r="A" t="str"><v>A</v></c></row></sheetData></worksheet>`) cols.sheetXML = []byte(`<worksheet><sheetData><row r="1"><c r="A" t="str"><v>A</v></c></row></sheetData></worksheet>`)
_, err = cols.Rows() _, err = cols.Rows()
assert.EqualError(t, err, `cannot convert cell "A" to coordinates: invalid cell name "A"`) assert.EqualError(t, err, `cannot convert cell "A" to coordinates: invalid cell name "A"`)
} }
@ -153,7 +153,7 @@ func TestColsRows(t *testing.T) {
assert.NoError(t, err) assert.NoError(t, err)
// Test if token is nil // Test if token is nil
cols.decoder = nil cols.sheetXML = nil
_, err = cols.Rows() _, err = cols.Rows()
assert.NoError(t, err) assert.NoError(t, err)
} }

@ -3,9 +3,11 @@
// the LICENSE file. // the LICENSE file.
// //
// Package excelize providing a set of functions that allow you to write to // Package excelize providing a set of functions that allow you to write to
// and read from XLSX files. Support reads and writes XLSX file generated by // and read from XLSX / XLSM / XLTM files. Supports reading and writing
// Microsoft Excel™ 2007 and later. Support save file without losing original // spreadsheet documents generated by Microsoft Exce™ 2007 and later. Supports
// charts of XLSX. This library needs Go version 1.10 or later. // complex components by high compatibility, and provided streaming API for
// generating or reading data from a worksheet with huge amounts of data. This
// library needs Go version 1.10 or later.
package excelize package excelize

@ -3,9 +3,11 @@
// the LICENSE file. // the LICENSE file.
// //
// Package excelize providing a set of functions that allow you to write to // Package excelize providing a set of functions that allow you to write to
// and read from XLSX files. Support reads and writes XLSX file generated by // and read from XLSX / XLSM / XLTM files. Supports reading and writing
// Microsoft Excel™ 2007 and later. Support save file without losing original // spreadsheet documents generated by Microsoft Exce™ 2007 and later. Supports
// charts of XLSX. This library needs Go version 1.10 or later. // complex components by high compatibility, and provided streaming API for
// generating or reading data from a worksheet with huge amounts of data. This
// library needs Go version 1.10 or later.
package excelize package excelize

@ -3,9 +3,11 @@
// the LICENSE file. // the LICENSE file.
// //
// Package excelize providing a set of functions that allow you to write to // Package excelize providing a set of functions that allow you to write to
// and read from XLSX files. Support reads and writes XLSX file generated by // and read from XLSX / XLSM / XLTM files. Supports reading and writing
// Microsoft Excel™ 2007 and later. Support save file without losing original // spreadsheet documents generated by Microsoft Exce™ 2007 and later. Supports
// charts of XLSX. This library needs Go version 1.10 or later. // complex components by high compatibility, and provided streaming API for
// generating or reading data from a worksheet with huge amounts of data. This
// library needs Go version 1.10 or later.
package excelize package excelize

@ -3,9 +3,11 @@
// the LICENSE file. // the LICENSE file.
// //
// Package excelize providing a set of functions that allow you to write to // Package excelize providing a set of functions that allow you to write to
// and read from XLSX files. Support reads and writes XLSX file generated by // and read from XLSX / XLSM / XLTM files. Supports reading and writing
// Microsoft Excel™ 2007 and later. Support save file without losing original // spreadsheet documents generated by Microsoft Exce™ 2007 and later. Supports
// charts of XLSX. This library needs Go version 1.10 or later. // complex components by high compatibility, and provided streaming API for
// generating or reading data from a worksheet with huge amounts of data. This
// library needs Go version 1.10 or later.
package excelize package excelize

@ -3,9 +3,11 @@
// the LICENSE file. // the LICENSE file.
// //
// Package excelize providing a set of functions that allow you to write to // Package excelize providing a set of functions that allow you to write to
// and read from XLSX files. Support reads and writes XLSX file generated by // and read from XLSX / XLSM / XLTM files. Supports reading and writing
// Microsoft Excel™ 2007 and later. Support save file without losing original // spreadsheet documents generated by Microsoft Exce™ 2007 and later. Supports
// charts of XLSX. This library needs Go version 1.10 or later. // complex components by high compatibility, and provided streaming API for
// generating or reading data from a worksheet with huge amounts of data. This
// library needs Go version 1.10 or later.
package excelize package excelize

@ -3,9 +3,11 @@
// the LICENSE file. // the LICENSE file.
// //
// Package excelize providing a set of functions that allow you to write to // Package excelize providing a set of functions that allow you to write to
// and read from XLSX files. Support reads and writes XLSX file generated by // and read from XLSX / XLSM / XLTM files. Supports reading and writing
// Microsoft Excel™ 2007 and later. Support save file without losing original // spreadsheet documents generated by Microsoft Exce™ 2007 and later. Supports
// charts of XLSX. This library needs Go version 1.10 or later. // complex components by high compatibility, and provided streaming API for
// generating or reading data from a worksheet with huge amounts of data. This
// library needs Go version 1.10 or later.
package excelize package excelize

@ -3,9 +3,11 @@
// the LICENSE file. // the LICENSE file.
// //
// Package excelize providing a set of functions that allow you to write to // Package excelize providing a set of functions that allow you to write to
// and read from XLSX files. Support reads and writes XLSX file generated by // and read from XLSX / XLSM / XLTM files. Supports reading and writing
// Microsoft Excel™ 2007 and later. Support save file without losing original // spreadsheet documents generated by Microsoft Exce™ 2007 and later. Supports
// charts of XLSX. This library needs Go version 1.10 or later. // complex components by high compatibility, and provided streaming API for
// generating or reading data from a worksheet with huge amounts of data. This
// library needs Go version 1.10 or later.
package excelize package excelize

@ -3,9 +3,11 @@
// the LICENSE file. // the LICENSE file.
// //
// Package excelize providing a set of functions that allow you to write to // Package excelize providing a set of functions that allow you to write to
// and read from XLSX files. Support reads and writes XLSX file generated by // and read from XLSX / XLSM / XLTM files. Supports reading and writing
// Microsoft Excel™ 2007 and later. Support save file without losing original // spreadsheet documents generated by Microsoft Exce™ 2007 and later. Supports
// charts of XLSX. This library needs Go version 1.10 or later. // complex components by high compatibility, and provided streaming API for
// generating or reading data from a worksheet with huge amounts of data. This
// library needs Go version 1.10 or later.
package excelize package excelize

@ -3,9 +3,11 @@
// the LICENSE file. // the LICENSE file.
// //
// Package excelize providing a set of functions that allow you to write to // Package excelize providing a set of functions that allow you to write to
// and read from XLSX files. Support reads and writes XLSX file generated by // and read from XLSX / XLSM / XLTM files. Supports reading and writing
// Microsoft Excel™ 2007 and later. Support save file without losing original // spreadsheet documents generated by Microsoft Exce™ 2007 and later. Supports
// charts of XLSX. This library needs Go version 1.10 or later. // complex components by high compatibility, and provided streaming API for
// generating or reading data from a worksheet with huge amounts of data. This
// library needs Go version 1.10 or later.
package excelize package excelize

@ -3,9 +3,11 @@
// the LICENSE file. // the LICENSE file.
// //
// Package excelize providing a set of functions that allow you to write to // Package excelize providing a set of functions that allow you to write to
// and read from XLSX files. Support reads and writes XLSX file generated by // and read from XLSX / XLSM / XLTM files. Supports reading and writing
// Microsoft Excel™ 2007 and later. Support save file without losing original // spreadsheet documents generated by Microsoft Exce™ 2007 and later. Supports
// charts of XLSX. This library needs Go version 1.10 or later. // complex components by high compatibility, and provided streaming API for
// generating or reading data from a worksheet with huge amounts of data. This
// library needs Go version 1.10 or later.
package excelize package excelize

@ -3,9 +3,11 @@
// the LICENSE file. // the LICENSE file.
// //
// Package excelize providing a set of functions that allow you to write to // Package excelize providing a set of functions that allow you to write to
// and read from XLSX files. Support reads and writes XLSX file generated by // and read from XLSX / XLSM / XLTM files. Supports reading and writing
// Microsoft Excel™ 2007 and later. Support save file without losing original // spreadsheet documents generated by Microsoft Exce™ 2007 and later. Supports
// charts of XLSX. This library needs Go version 1.10 or later. // complex components by high compatibility, and provided streaming API for
// generating or reading data from a worksheet with huge amounts of data. This
// library needs Go version 1.10 or later.
package excelize package excelize

@ -3,9 +3,11 @@
// the LICENSE file. // the LICENSE file.
// //
// Package excelize providing a set of functions that allow you to write to // Package excelize providing a set of functions that allow you to write to
// and read from XLSX files. Support reads and writes XLSX file generated by // and read from XLSX / XLSM / XLTM files. Supports reading and writing
// Microsoft Excel™ 2007 and later. Support save file without losing original // spreadsheet documents generated by Microsoft Exce™ 2007 and later. Supports
// charts of XLSX. This library needs Go version 1.10 or later. // complex components by high compatibility, and provided streaming API for
// generating or reading data from a worksheet with huge amounts of data. This
// library needs Go version 1.10 or later.
package excelize package excelize

@ -3,9 +3,11 @@
// the LICENSE file. // the LICENSE file.
// //
// Package excelize providing a set of functions that allow you to write to // Package excelize providing a set of functions that allow you to write to
// and read from XLSX files. Support reads and writes XLSX file generated by // and read from XLSX / XLSM / XLTM files. Supports reading and writing
// Microsoft Excel™ 2007 and later. Support save file without losing original // spreadsheet documents generated by Microsoft Exce™ 2007 and later. Supports
// charts of XLSX. This library needs Go version 1.10 or later. // complex components by high compatibility, and provided streaming API for
// generating or reading data from a worksheet with huge amounts of data. This
// library needs Go version 1.10 or later.
package excelize package excelize

@ -3,9 +3,11 @@
// the LICENSE file. // the LICENSE file.
// //
// Package excelize providing a set of functions that allow you to write to // Package excelize providing a set of functions that allow you to write to
// and read from XLSX files. Support reads and writes XLSX file generated by // and read from XLSX / XLSM / XLTM files. Supports reading and writing
// Microsoft Excel™ 2007 and later. Support save file without losing original // spreadsheet documents generated by Microsoft Exce™ 2007 and later. Supports
// charts of XLSX. This library needs Go version 1.10 or later. // complex components by high compatibility, and provided streaming API for
// generating or reading data from a worksheet with huge amounts of data. This
// library needs Go version 1.10 or later.
package excelize package excelize

@ -3,9 +3,11 @@
// the LICENSE file. // the LICENSE file.
// //
// Package excelize providing a set of functions that allow you to write to // Package excelize providing a set of functions that allow you to write to
// and read from XLSX files. Support reads and writes XLSX file generated by // and read from XLSX / XLSM / XLTM files. Supports reading and writing
// Microsoft Excel™ 2007 and later. Support save file without losing original // spreadsheet documents generated by Microsoft Exce™ 2007 and later. Supports
// charts of XLSX. This library needs Go version 1.10 or later. // complex components by high compatibility, and provided streaming API for
// generating or reading data from a worksheet with huge amounts of data. This
// library needs Go version 1.10 or later.
package excelize package excelize

@ -3,9 +3,11 @@
// the LICENSE file. // the LICENSE file.
// //
// Package excelize providing a set of functions that allow you to write to // Package excelize providing a set of functions that allow you to write to
// and read from XLSX files. Support reads and writes XLSX file generated by // and read from XLSX / XLSM / XLTM files. Supports reading and writing
// Microsoft Excel™ 2007 and later. Support save file without losing original // spreadsheet documents generated by Microsoft Exce™ 2007 and later. Supports
// charts of XLSX. This library needs Go version 1.10 or later. // complex components by high compatibility, and provided streaming API for
// generating or reading data from a worksheet with huge amounts of data. This
// library needs Go version 1.10 or later.
package excelize package excelize

@ -3,9 +3,11 @@
// the LICENSE file. // the LICENSE file.
// //
// Package excelize providing a set of functions that allow you to write to // Package excelize providing a set of functions that allow you to write to
// and read from XLSX files. Support reads and writes XLSX file generated by // and read from XLSX / XLSM / XLTM files. Supports reading and writing
// Microsoft Excel™ 2007 and later. Support save file without losing original // spreadsheet documents generated by Microsoft Exce™ 2007 and later. Supports
// charts of XLSX. This library needs Go version 1.10 or later. // complex components by high compatibility, and provided streaming API for
// generating or reading data from a worksheet with huge amounts of data. This
// library needs Go version 1.10 or later.
package excelize package excelize

@ -3,9 +3,11 @@
// the LICENSE file. // the LICENSE file.
// //
// Package excelize providing a set of functions that allow you to write to // Package excelize providing a set of functions that allow you to write to
// and read from XLSX files. Support reads and writes XLSX file generated by // and read from XLSX / XLSM / XLTM files. Supports reading and writing
// Microsoft Excel™ 2007 and later. Support save file without losing original // spreadsheet documents generated by Microsoft Exce™ 2007 and later. Supports
// charts of XLSX. This library needs Go version 1.10 or later. // complex components by high compatibility, and provided streaming API for
// generating or reading data from a worksheet with huge amounts of data. This
// library needs Go version 1.10 or later.
package excelize package excelize

@ -3,9 +3,11 @@
// the LICENSE file. // the LICENSE file.
// //
// Package excelize providing a set of functions that allow you to write to // Package excelize providing a set of functions that allow you to write to
// and read from XLSX files. Support reads and writes XLSX file generated by // and read from XLSX / XLSM / XLTM files. Supports reading and writing
// Microsoft Excel™ 2007 and later. Support save file without losing original // spreadsheet documents generated by Microsoft Exce™ 2007 and later. Supports
// charts of XLSX. This library needs Go version 1.10 or later. // complex components by high compatibility, and provided streaming API for
// generating or reading data from a worksheet with huge amounts of data. This
// library needs Go version 1.10 or later.
package excelize package excelize

@ -3,9 +3,11 @@
// the LICENSE file. // the LICENSE file.
// //
// Package excelize providing a set of functions that allow you to write to // Package excelize providing a set of functions that allow you to write to
// and read from XLSX files. Support reads and writes XLSX file generated by // and read from XLSX / XLSM / XLTM files. Supports reading and writing
// Microsoft Excel™ 2007 and later. Support save file without losing original // spreadsheet documents generated by Microsoft Exce™ 2007 and later. Supports
// charts of XLSX. This library needs Go version 1.10 or later. // complex components by high compatibility, and provided streaming API for
// generating or reading data from a worksheet with huge amounts of data. This
// library needs Go version 1.10 or later.
package excelize package excelize

@ -3,9 +3,11 @@
// the LICENSE file. // the LICENSE file.
// //
// Package excelize providing a set of functions that allow you to write to // Package excelize providing a set of functions that allow you to write to
// and read from XLSX files. Support reads and writes XLSX file generated by // and read from XLSX / XLSM / XLTM files. Supports reading and writing
// Microsoft Excel™ 2007 and later. Support save file without losing original // spreadsheet documents generated by Microsoft Exce™ 2007 and later. Supports
// charts of XLSX. This library needs Go version 1.10 or later. // complex components by high compatibility, and provided streaming API for
// generating or reading data from a worksheet with huge amounts of data. This
// library needs Go version 1.10 or later.
// //
// This file contains default templates for XML files we don't yet populated // This file contains default templates for XML files we don't yet populated
// based on content. // based on content.

@ -3,9 +3,11 @@
// the LICENSE file. // the LICENSE file.
// //
// Package excelize providing a set of functions that allow you to write to // Package excelize providing a set of functions that allow you to write to
// and read from XLSX files. Support reads and writes XLSX file generated by // and read from XLSX / XLSM / XLTM files. Supports reading and writing
// Microsoft Excel™ 2007 and later. Support save file without losing original // spreadsheet documents generated by Microsoft Exce™ 2007 and later. Supports
// charts of XLSX. This library needs Go version 1.10 or later. // complex components by high compatibility, and provided streaming API for
// generating or reading data from a worksheet with huge amounts of data. This
// library needs Go version 1.10 or later.
package excelize package excelize

@ -3,9 +3,11 @@
// the LICENSE file. // the LICENSE file.
// //
// Package excelize providing a set of functions that allow you to write to // Package excelize providing a set of functions that allow you to write to
// and read from XLSX files. Support reads and writes XLSX file generated by // and read from XLSX / XLSM / XLTM files. Supports reading and writing
// Microsoft Excel™ 2007 and later. Support save file without losing original // spreadsheet documents generated by Microsoft Exce™ 2007 and later. Supports
// charts of XLSX. This library needs Go version 1.10 or later. // complex components by high compatibility, and provided streaming API for
// generating or reading data from a worksheet with huge amounts of data. This
// library needs Go version 1.10 or later.
package excelize package excelize

@ -3,9 +3,11 @@
// the LICENSE file. // the LICENSE file.
// //
// Package excelize providing a set of functions that allow you to write to // Package excelize providing a set of functions that allow you to write to
// and read from XLSX files. Support reads and writes XLSX file generated by // and read from XLSX / XLSM / XLTM files. Supports reading and writing
// Microsoft Excel™ 2007 and later. Support save file without losing original // spreadsheet documents generated by Microsoft Exce™ 2007 and later. Supports
// charts of XLSX. This library needs Go version 1.10 or later. // complex components by high compatibility, and provided streaming API for
// generating or reading data from a worksheet with huge amounts of data. This
// library needs Go version 1.10 or later.
package excelize package excelize

@ -3,9 +3,11 @@
// the LICENSE file. // the LICENSE file.
// //
// Package excelize providing a set of functions that allow you to write to // Package excelize providing a set of functions that allow you to write to
// and read from XLSX files. Support reads and writes XLSX file generated by // and read from XLSX / XLSM / XLTM files. Supports reading and writing
// Microsoft Excel™ 2007 and later. Support save file without losing original // spreadsheet documents generated by Microsoft Exce™ 2007 and later. Supports
// charts of XLSX. This library needs Go version 1.10 or later. // complex components by high compatibility, and provided streaming API for
// generating or reading data from a worksheet with huge amounts of data. This
// library needs Go version 1.10 or later.
package excelize package excelize

@ -3,9 +3,11 @@
// the LICENSE file. // the LICENSE file.
// //
// Package excelize providing a set of functions that allow you to write to // Package excelize providing a set of functions that allow you to write to
// and read from XLSX files. Support reads and writes XLSX file generated by // and read from XLSX / XLSM / XLTM files. Supports reading and writing
// Microsoft Excel™ 2007 and later. Support save file without losing original // spreadsheet documents generated by Microsoft Exce™ 2007 and later. Supports
// charts of XLSX. This library needs Go version 1.10 or later. // complex components by high compatibility, and provided streaming API for
// generating or reading data from a worksheet with huge amounts of data. This
// library needs Go version 1.10 or later.
package excelize package excelize

@ -3,9 +3,11 @@
// the LICENSE file. // the LICENSE file.
// //
// Package excelize providing a set of functions that allow you to write to // Package excelize providing a set of functions that allow you to write to
// and read from XLSX files. Support reads and writes XLSX file generated by // and read from XLSX / XLSM / XLTM files. Supports reading and writing
// Microsoft Excel™ 2007 and later. Support save file without losing original // spreadsheet documents generated by Microsoft Exce™ 2007 and later. Supports
// charts of XLSX. This library needs Go version 1.10 or later. // complex components by high compatibility, and provided streaming API for
// generating or reading data from a worksheet with huge amounts of data. This
// library needs Go version 1.10 or later.
package excelize package excelize

@ -3,9 +3,11 @@
// the LICENSE file. // the LICENSE file.
// //
// Package excelize providing a set of functions that allow you to write to // Package excelize providing a set of functions that allow you to write to
// and read from XLSX files. Support reads and writes XLSX file generated by // and read from XLSX / XLSM / XLTM files. Supports reading and writing
// Microsoft Excel™ 2007 and later. Support save file without losing original // spreadsheet documents generated by Microsoft Exce™ 2007 and later. Supports
// charts of XLSX. This library needs Go version 1.10 or later. // complex components by high compatibility, and provided streaming API for
// generating or reading data from a worksheet with huge amounts of data. This
// library needs Go version 1.10 or later.
package excelize package excelize

@ -3,9 +3,11 @@
// the LICENSE file. // the LICENSE file.
// //
// Package excelize providing a set of functions that allow you to write to // Package excelize providing a set of functions that allow you to write to
// and read from XLSX files. Support reads and writes XLSX file generated by // and read from XLSX / XLSM / XLTM files. Supports reading and writing
// Microsoft Excel™ 2007 and later. Support save file without losing original // spreadsheet documents generated by Microsoft Exce™ 2007 and later. Supports
// charts of XLSX. This library needs Go version 1.10 or later. // complex components by high compatibility, and provided streaming API for
// generating or reading data from a worksheet with huge amounts of data. This
// library needs Go version 1.10 or later.
package excelize package excelize

@ -3,9 +3,11 @@
// the LICENSE file. // the LICENSE file.
// //
// Package excelize providing a set of functions that allow you to write to // Package excelize providing a set of functions that allow you to write to
// and read from XLSX files. Support reads and writes XLSX file generated by // and read from XLSX / XLSM / XLTM files. Supports reading and writing
// Microsoft Excel™ 2007 and later. Support save file without losing original // spreadsheet documents generated by Microsoft Exce™ 2007 and later. Supports
// charts of XLSX. This library needs Go version 1.10 or later. // complex components by high compatibility, and provided streaming API for
// generating or reading data from a worksheet with huge amounts of data. This
// library needs Go version 1.10 or later.
package excelize package excelize

@ -3,9 +3,11 @@
// the LICENSE file. // the LICENSE file.
// //
// Package excelize providing a set of functions that allow you to write to // Package excelize providing a set of functions that allow you to write to
// and read from XLSX files. Support reads and writes XLSX file generated by // and read from XLSX / XLSM / XLTM files. Supports reading and writing
// Microsoft Excel™ 2007 and later. Support save file without losing original // spreadsheet documents generated by Microsoft Exce™ 2007 and later. Supports
// charts of XLSX. This library needs Go version 1.10 or later. // complex components by high compatibility, and provided streaming API for
// generating or reading data from a worksheet with huge amounts of data. This
// library needs Go version 1.10 or later.
package excelize package excelize

@ -3,9 +3,11 @@
// the LICENSE file. // the LICENSE file.
// //
// Package excelize providing a set of functions that allow you to write to // Package excelize providing a set of functions that allow you to write to
// and read from XLSX files. Support reads and writes XLSX file generated by // and read from XLSX / XLSM / XLTM files. Supports reading and writing
// Microsoft Excel™ 2007 and later. Support save file without losing original // spreadsheet documents generated by Microsoft Exce™ 2007 and later. Supports
// charts of XLSX. This library needs Go version 1.10 or later. // complex components by high compatibility, and provided streaming API for
// generating or reading data from a worksheet with huge amounts of data. This
// library needs Go version 1.10 or later.
package excelize package excelize

@ -3,9 +3,11 @@
// the LICENSE file. // the LICENSE file.
// //
// Package excelize providing a set of functions that allow you to write to // Package excelize providing a set of functions that allow you to write to
// and read from XLSX files. Support reads and writes XLSX file generated by // and read from XLSX / XLSM / XLTM files. Supports reading and writing
// Microsoft Excel™ 2007 and later. Support save file without losing original // spreadsheet documents generated by Microsoft Exce™ 2007 and later. Supports
// charts of XLSX. This library needs Go version 1.10 or later. // complex components by high compatibility, and provided streaming API for
// generating or reading data from a worksheet with huge amounts of data. This
// library needs Go version 1.10 or later.
package excelize package excelize

@ -3,9 +3,11 @@
// the LICENSE file. // the LICENSE file.
// //
// Package excelize providing a set of functions that allow you to write to // Package excelize providing a set of functions that allow you to write to
// and read from XLSX files. Support reads and writes XLSX file generated by // and read from XLSX / XLSM / XLTM files. Supports reading and writing
// Microsoft Excel™ 2007 and later. Support save file without losing original // spreadsheet documents generated by Microsoft Exce™ 2007 and later. Supports
// charts of XLSX. This library needs Go version 1.10 or later. // complex components by high compatibility, and provided streaming API for
// generating or reading data from a worksheet with huge amounts of data. This
// library needs Go version 1.10 or later.
package excelize package excelize

@ -3,9 +3,11 @@
// the LICENSE file. // the LICENSE file.
// //
// Package excelize providing a set of functions that allow you to write to // Package excelize providing a set of functions that allow you to write to
// and read from XLSX files. Support reads and writes XLSX file generated by // and read from XLSX / XLSM / XLTM files. Supports reading and writing
// Microsoft Excel™ 2007 and later. Support save file without losing original // spreadsheet documents generated by Microsoft Exce™ 2007 and later. Supports
// charts of XLSX. This library needs Go version 1.10 or later. // complex components by high compatibility, and provided streaming API for
// generating or reading data from a worksheet with huge amounts of data. This
// library needs Go version 1.10 or later.
package excelize package excelize

@ -3,9 +3,11 @@
// the LICENSE file. // the LICENSE file.
// //
// Package excelize providing a set of functions that allow you to write to // Package excelize providing a set of functions that allow you to write to
// and read from XLSX files. Support reads and writes XLSX file generated by // and read from XLSX / XLSM / XLTM files. Supports reading and writing
// Microsoft Excel™ 2007 and later. Support save file without losing original // spreadsheet documents generated by Microsoft Exce™ 2007 and later. Supports
// charts of XLSX. This library needs Go version 1.10 or later. // complex components by high compatibility, and provided streaming API for
// generating or reading data from a worksheet with huge amounts of data. This
// library needs Go version 1.10 or later.
package excelize package excelize

@ -3,9 +3,11 @@
// the LICENSE file. // the LICENSE file.
// //
// Package excelize providing a set of functions that allow you to write to // Package excelize providing a set of functions that allow you to write to
// and read from XLSX files. Support reads and writes XLSX file generated by // and read from XLSX / XLSM / XLTM files. Supports reading and writing
// Microsoft Excel™ 2007 and later. Support save file without losing original // spreadsheet documents generated by Microsoft Exce™ 2007 and later. Supports
// charts of XLSX. This library needs Go version 1.10 or later. // complex components by high compatibility, and provided streaming API for
// generating or reading data from a worksheet with huge amounts of data. This
// library needs Go version 1.10 or later.
package excelize package excelize

Loading…
Cancel
Save