diff options
author | Ri Xu <xuri.me@gmail.com> | 2017-10-31 16:33:36 +0800 |
---|---|---|
committer | Ri Xu <xuri.me@gmail.com> | 2017-10-31 16:33:36 +0800 |
commit | f10ee929d0818f6327f33c7813eaa9a318555cc3 (patch) | |
tree | 7a0e4035fee8963eeec925bb6f2d5258e88379b5 /col.go | |
parent | ebafbdde73e3e0498e547a2bd862552d9e304701 (diff) |
- Bugfix: use sheet name in func `AddPicture`, relate issue #142;
- godoc updated
Diffstat (limited to 'col.go')
-rw-r--r-- | col.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -15,7 +15,7 @@ const ( ) // GetColVisible provides a function to get visible of a single column by given -// worksheet index and column name. For example, get visible state of column D +// worksheet name and column name. For example, get visible state of column D // in Sheet1: // // xlsx.GetColVisible("Sheet1", "D") @@ -36,7 +36,7 @@ func (f *File) GetColVisible(sheet, column string) bool { } // SetColVisible provides a function to set visible of a single column by given -// worksheet index and column name. For example, hide column D in Sheet1: +// worksheet name and column name. For example, hide column D in Sheet1: // // xlsx.SetColVisible("Sheet1", "D", false) // |