diff options
author | Ri Xu <xuri.me@gmail.com> | 2017-04-25 18:43:10 +0800 |
---|---|---|
committer | Ri Xu <xuri.me@gmail.com> | 2017-04-25 18:43:10 +0800 |
commit | 266d2c36e58ad1a53286ab2c01a2d41e3af883c7 (patch) | |
tree | 07fed55aad2d31be8e5104bf906881922bff18f9 /rows.go | |
parent | d78ac4108c2fd8ccf4a0d150302a70031d6f889b (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.go | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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)) |