summaryrefslogtreecommitdiff
path: root/sheetview_test.go
diff options
context:
space:
mode:
authorxuri <xuri.me@gmail.com>2017-11-21 11:08:28 +0800
committerGitHub <noreply@github.com>2017-11-21 11:08:28 +0800
commit3d231cb549a3be2754a1681b158731d381e9f600 (patch)
tree7cc36066990bda19bd843c8b56b1345bac98a96b /sheetview_test.go
parent130eb453f4c38f4c69790adffce58f73c94bde2a (diff)
parentd2fb0197abb325ee7bbdd6576e9520c9ec8c9c8e (diff)
Merge pull request #156 from dolmen-go/fix/SheetViewOptPtr-is-a-SheetViewOpt
SheetViewOptionPtr: document that it is a superset of SheetViewOption
Diffstat (limited to 'sheetview_test.go')
-rw-r--r--sheetview_test.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/sheetview_test.go b/sheetview_test.go
index 348b9b7..2061012 100644
--- a/sheetview_test.go
+++ b/sheetview_test.go
@@ -13,6 +13,12 @@ var _ = []excelize.SheetViewOption{
excelize.ShowFormulas(false),
excelize.ShowGridLines(true),
excelize.ShowRowColHeaders(true),
+ // SheetViewOptionPtr are also SheetViewOption
+ new(excelize.DefaultGridColor),
+ new(excelize.RightToLeft),
+ new(excelize.ShowFormulas),
+ new(excelize.ShowGridLines),
+ new(excelize.ShowRowColHeaders),
}
var _ = []excelize.SheetViewOptionPtr{