summaryrefslogtreecommitdiff
path: root/sheetpr.go
diff options
context:
space:
mode:
authorxuri <xuri.me@gmail.com>2022-08-12 00:32:51 +0800
committerxuri <xuri.me@gmail.com>2022-08-12 00:32:51 +0800
commit8152bbb2cec76f074dc18c43f3c66bf8abdf9de0 (patch)
tree5052a82092f141cda644c83d5e891d2edf769aa8 /sheetpr.go
parented91cddea59ce15da87ab744ac20b465a36ed5ef (diff)
This closes #1312, #1313, fix number format issue
- Add supported options in the docs of the functions `SetSheetPrOptions` and `GetSheetPrOptions` - Add go1.19 unit test settings, and made the test case compatible with go1.19 - Update dependencies module
Diffstat (limited to 'sheetpr.go')
-rw-r--r--sheetpr.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/sheetpr.go b/sheetpr.go
index 0e3cb9b..65939c1 100644
--- a/sheetpr.go
+++ b/sheetpr.go
@@ -242,6 +242,10 @@ func (o *AutoPageBreaks) getSheetPrOption(pr *xlsxSheetPr) {
// EnableFormatConditionsCalculation(bool)
// Published(bool)
// FitToPage(bool)
+// TabColorIndexed(int)
+// TabColorRGB(string)
+// TabColorTheme(int)
+// TabColorTint(float64)
// AutoPageBreaks(bool)
// OutlineSummaryBelow(bool)
func (f *File) SetSheetPrOptions(sheet string, opts ...SheetPrOption) error {
@@ -268,6 +272,10 @@ func (f *File) SetSheetPrOptions(sheet string, opts ...SheetPrOption) error {
// EnableFormatConditionsCalculation(bool)
// Published(bool)
// FitToPage(bool)
+// TabColorIndexed(int)
+// TabColorRGB(string)
+// TabColorTheme(int)
+// TabColorTint(float64)
// AutoPageBreaks(bool)
// OutlineSummaryBelow(bool)
func (f *File) GetSheetPrOptions(sheet string, opts ...SheetPrOptionPtr) error {