summaryrefslogtreecommitdiff
path: root/rows.go
diff options
context:
space:
mode:
authorRi Xu <xuri.me@gmail.com>2017-04-25 18:43:10 +0800
committerRi Xu <xuri.me@gmail.com>2017-04-25 18:43:10 +0800
commit266d2c36e58ad1a53286ab2c01a2d41e3af883c7 (patch)
tree07fed55aad2d31be8e5104bf906881922bff18f9 /rows.go
parentd78ac4108c2fd8ccf4a0d150302a70031d6f889b (diff)
- Font bold, italic and underline style support. Relate issue #45;
- Function `GetRows()` doc updated, relate issue #43; - go test and embed template updated
Diffstat (limited to 'rows.go')
-rw-r--r--rows.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/rows.go b/rows.go
index b753fcd..7e5ae5e 100644
--- a/rows.go
+++ b/rows.go
@@ -6,7 +6,11 @@ import (
"strings"
)
-// GetRows return all the rows in a sheet by given "sheet" + index, for example:
+// GetRows return all the rows in a sheet by given "sheet" + index. For now you
+// should use sheet_name like "sheet3" where "sheet" is a constant part and "3"
+// is a sheet number. For example, if sheet named as "SomeUniqueData" and it is
+// second if spreadsheet program interface - you should use "sheet2" here. For
+// example:
//
// index := xlsx.GetSheetIndex("Sheet2")
// rows := xlsx.GetRows("sheet" + strconv.Itoa(index))