From 266d2c36e58ad1a53286ab2c01a2d41e3af883c7 Mon Sep 17 00:00:00 2001 From: Ri Xu Date: Tue, 25 Apr 2017 18:43:10 +0800 Subject: - Font bold, italic and underline style support. Relate issue #45; - Function `GetRows()` doc updated, relate issue #43; - go test and embed template updated --- rows.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'rows.go') 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)) -- cgit v1.2.1