diff options
author | xuri <xuri.me@gmail.com> | 2022-08-12 00:32:51 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2022-08-12 00:32:51 +0800 |
commit | 8152bbb2cec76f074dc18c43f3c66bf8abdf9de0 (patch) | |
tree | 5052a82092f141cda644c83d5e891d2edf769aa8 /sheetpr.go | |
parent | ed91cddea59ce15da87ab744ac20b465a36ed5ef (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.go | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -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 { |