diff options
author | xuri <xuri.me@gmail.com> | 2019-06-08 00:00:55 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2019-06-08 00:00:55 +0800 |
commit | 421f945f51f254054991127758db0520cf0f5456 (patch) | |
tree | 9f8d0ae3c10a623d537ac3e84733e32feb9107b4 /xmlStyles.go | |
parent | 3997dee1f58c81444733e1756da6138d4ce445f1 (diff) |
Fixed #418, #420, #421, init adjust calculation chain support
Update testing case
Diffstat (limited to 'xmlStyles.go')
-rwxr-xr-x | xmlStyles.go | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/xmlStyles.go b/xmlStyles.go index 46587da..49abe3c 100755 --- a/xmlStyles.go +++ b/xmlStyles.go @@ -88,13 +88,13 @@ type xlsxFont struct { Name *attrValString `xml:"name"` Charset *attrValInt `xml:"charset"` Family *attrValInt `xml:"family"` - B bool `xml:"b,omitempty"` - I bool `xml:"i,omitempty"` - Strike bool `xml:"strike,omitempty"` - Outline bool `xml:"outline,omitempty"` - Shadow bool `xml:"shadow,omitempty"` - Condense bool `xml:"condense,omitempty"` - Extend bool `xml:"extend,omitempty"` + B *bool `xml:"b,omitempty"` + I *bool `xml:"i,omitempty"` + Strike *bool `xml:"strike,omitempty"` + Outline *bool `xml:"outline,omitempty"` + Shadow *bool `xml:"shadow,omitempty"` + Condense *bool `xml:"condense,omitempty"` + Extend *bool `xml:"extend,omitempty"` Color *xlsxColor `xml:"color"` Sz *attrValFloat `xml:"sz"` U *attrValString `xml:"u"` |