Update docs and typo fixed
This commit is contained in:
parent
5221729bc3
commit
15fd56853f
|
@ -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
|
||||||
|
|
||||||
|
|
8
cell.go
8
cell.go
|
@ -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
|
||||||
|
|
||||||
|
|
8
chart.go
8
chart.go
|
@ -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
|
||||||
|
|
||||||
|
|
8
col.go
8
col.go
|
@ -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
|
||||||
|
|
||||||
|
|
8
date.go
8
date.go
|
@ -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
|
||||||
|
|
||||||
|
|
8
file.go
8
file.go
|
@ -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
|
||||||
|
|
||||||
|
|
8
lib.go
8
lib.go
|
@ -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
|
||||||
|
|
||||||
|
|
8
merge.go
8
merge.go
|
@ -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
|
||||||
|
|
||||||
|
|
8
rows.go
8
rows.go
|
@ -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
|
||||||
|
|
||||||
|
|
8
shape.go
8
shape.go
|
@ -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
|
||||||
|
|
||||||
|
|
8
sheet.go
8
sheet.go
|
@ -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
|
||||||
|
|
||||||
|
|
8
table.go
8
table.go
|
@ -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…
Reference in New Issue