diff options
author | Ri Xu <xuri.me@gmail.com> | 2017-01-19 14:05:32 +0800 |
---|---|---|
committer | Ri Xu <xuri.me@gmail.com> | 2017-01-19 14:05:32 +0800 |
commit | 4a9b39afc634a2399c4729f4fb47c9f290ab1ee5 (patch) | |
tree | 71d673195ccae30d6ef174611f6cf362be7e9133 /sheet.go | |
parent | 52796f6e58e95145e2964d0d313a2f721dcc040e (diff) |
- Add hyperlink and set formula support for cell support;
- Character limits for cells added;
- Update go test and fix typo
Diffstat (limited to 'sheet.go')
-rw-r--r-- | sheet.go | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -8,10 +8,9 @@ import ( "strings" ) -// Sprint formats using the default formats for its operands and returns the -// resulting string. NewSheet provice function to greate a new sheet by given -// index, when creating a new XLSX file, the default sheet will be create, when -// you create a new file, you need to ensure that the index is continuous. +// NewSheet provice function to greate a new sheet by given index, when creating +// a new XLSX file, the default sheet will be create, when you create a new +// file, you need to ensure that the index is continuous. func (f *File) NewSheet(index int, name string) { // Update docProps/app.xml f.setAppXML() @@ -126,7 +125,7 @@ func replaceRelationshipsNameSpace(workbookMarshal string) string { return strings.Replace(workbookMarshal, oldXmlns, newXmlns, -1) } -// SetActiveSheet provide function to set default active sheet of XLSX by given +// SetActiveSheet provides function to set default active sheet of XLSX by given // index. func (f *File) SetActiveSheet(index int) { var content xlsxWorkbook |