diff options
| author | Ri Xu <xuri.me@gmail.com> | 2017-01-18 16:05:01 +0800 |
|---|---|---|
| committer | Ri Xu <xuri.me@gmail.com> | 2017-01-18 16:05:01 +0800 |
| commit | 52796f6e58e95145e2964d0d313a2f721dcc040e (patch) | |
| tree | 721e818837035953828c75e102aa7dede7f91492 /cell.go | |
| parent | f05df2a0182ee5761f5fbe7e56020313a0ab0b61 (diff) | |
Format commants, break comments after 80 characters.
Diffstat (limited to 'cell.go')
| -rw-r--r-- | cell.go | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -6,8 +6,8 @@ import ( "strings" ) -// GetCellValue provide function get value from cell by given sheet index and axis in XLSX file. -// The value of the merged cell is not available currently. +// GetCellValue provide function get value from cell by given sheet index and +// axis in XLSX file. The value of the merged cell is not available currently. func (f *File) GetCellValue(sheet string, axis string) string { axis = strings.ToUpper(axis) var xlsx xlsxWorksheet @@ -50,7 +50,8 @@ func (f *File) GetCellValue(sheet string, axis string) string { return "" } -// GetCellFormula provide function get formula from cell by given sheet index and axis in XLSX file. +// GetCellFormula provide function get formula from cell by given sheet index +// and axis in XLSX file. func (f *File) GetCellFormula(sheet string, axis string) string { axis = strings.ToUpper(axis) var xlsx xlsxWorksheet |
