summaryrefslogtreecommitdiff
path: root/cell.go
diff options
context:
space:
mode:
authorRi Xu <xuri.me@gmail.com>2017-01-18 16:05:01 +0800
committerRi Xu <xuri.me@gmail.com>2017-01-18 16:05:01 +0800
commit52796f6e58e95145e2964d0d313a2f721dcc040e (patch)
tree721e818837035953828c75e102aa7dede7f91492 /cell.go
parentf05df2a0182ee5761f5fbe7e56020313a0ab0b61 (diff)
Format commants, break comments after 80 characters.
Diffstat (limited to 'cell.go')
-rw-r--r--cell.go7
1 files changed, 4 insertions, 3 deletions
diff --git a/cell.go b/cell.go
index d881220..f91b661 100644
--- a/cell.go
+++ b/cell.go
@@ -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