summaryrefslogtreecommitdiff
path: root/rows.go
diff options
context:
space:
mode:
authorxuri <xuri.me@gmail.com>2018-05-11 10:14:18 +0800
committerxuri <xuri.me@gmail.com>2018-05-11 10:14:18 +0800
commiteb62256d165607c6877ce88efbba10c119137b3d (patch)
tree94d91454dd54b15dac228097323f23b54d22c3fc /rows.go
parentb5655ce121d4cca68423035ff77c2d833478a868 (diff)
Simplify testing code, add test case for outline functions and update the godoc.
Diffstat (limited to 'rows.go')
-rw-r--r--rows.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/rows.go b/rows.go
index 88ff512..75fa7f6 100644
--- a/rows.go
+++ b/rows.go
@@ -301,8 +301,9 @@ func (f *File) GetRowVisible(sheet string, rowIndex int) bool {
return !xlsx.SheetData.Row[rowIndex].Hidden
}
-// SetRowOutlineLevel provides a function to set outline level number of a single row by given
-// worksheet name and row index. For example, outline row 2 in Sheet1 to level 1:
+// SetRowOutlineLevel provides a function to set outline level number of a
+// single row by given worksheet name and row index. For example, outline row
+// 2 in Sheet1 to level 1:
//
// xlsx.SetRowOutlineLevel("Sheet1", 2, 1)
//