From e1abdb0e5a0ecae47dd0116c9165f4ad6e492856 Mon Sep 17 00:00:00 2001 From: xuri Date: Thu, 25 Mar 2021 00:05:02 +0800 Subject: This closes #809, and add new fn: HARMEAN --- xmlStyles.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'xmlStyles.go') 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. -- cgit v1.2.1