diff options
| author | Ri Xu <xuri.me@gmail.com> | 2017-10-31 16:33:36 +0800 |
|---|---|---|
| committer | Ri Xu <xuri.me@gmail.com> | 2017-10-31 16:33:36 +0800 |
| commit | f10ee929d0818f6327f33c7813eaa9a318555cc3 (patch) | |
| tree | 7a0e4035fee8963eeec925bb6f2d5258e88379b5 /cell.go | |
| parent | ebafbdde73e3e0498e547a2bd862552d9e304701 (diff) | |
- Bugfix: use sheet name in func `AddPicture`, relate issue #142;
- godoc updated
Diffstat (limited to 'cell.go')
| -rw-r--r-- | cell.go | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -85,9 +85,9 @@ func (f *File) SetCellValue(sheet, axis string, value interface{}) { } // GetCellValue provides function to get formatted value from cell by given -// sheet index and axis in XLSX file. If it is possible to apply a format to the -// cell value, it will do so, if not then an error will be returned, along with -// the raw value of the cell. +// worksheet name and axis in XLSX file. If it is possible to apply a format to +// the cell value, it will do so, if not then an error will be returned, along +// with the raw value of the cell. func (f *File) GetCellValue(sheet, axis string) string { xlsx := f.workSheetReader(sheet) axis = f.mergeCellsParser(xlsx, axis) @@ -191,7 +191,7 @@ func (f *File) GetCellFormula(sheet, axis string) string { } // SetCellFormula provides function to set cell formula by given string and -// sheet index. +// worksheet name. func (f *File) SetCellFormula(sheet, axis, formula string) { xlsx := f.workSheetReader(sheet) axis = f.mergeCellsParser(xlsx, axis) |
