diff options
author | xuri <xuri.me@gmail.com> | 2021-03-25 00:05:02 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2021-03-25 00:05:02 +0800 |
commit | e1abdb0e5a0ecae47dd0116c9165f4ad6e492856 (patch) | |
tree | a0b92dc57ee720d2edde47db6e877ee5f64a4901 /xmlStyles.go | |
parent | ab2c1c8fe1ef787c1f692bcf26c7bbe0cca2c5b3 (diff) |
This closes #809, and add new fn: HARMEAN
Diffstat (limited to 'xmlStyles.go')
-rw-r--r-- | xmlStyles.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmlStyles.go b/xmlStyles.go index db85b15..0670b59 100644 --- a/xmlStyles.go +++ b/xmlStyles.go @@ -49,8 +49,8 @@ type xlsxAlignment struct { // set. The cell protection properties do not take effect unless the sheet has // been protected. type xlsxProtection struct { - Hidden bool `xml:"hidden,attr"` - Locked bool `xml:"locked,attr"` + Hidden *bool `xml:"hidden,attr"` + Locked *bool `xml:"locked,attr"` } // xlsxLine expresses a single set of cell border. |