From 8152bbb2cec76f074dc18c43f3c66bf8abdf9de0 Mon Sep 17 00:00:00 2001 From: xuri Date: Fri, 12 Aug 2022 00:32:51 +0800 Subject: 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 --- sheetpr.go | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'sheetpr.go') 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 { -- cgit v1.2.1