summaryrefslogtreecommitdiff
path: root/xmlStyles.go
diff options
context:
space:
mode:
Diffstat (limited to 'xmlStyles.go')
-rw-r--r--xmlStyles.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/xmlStyles.go b/xmlStyles.go
index 7e02d6e..16a89ab 100644
--- a/xmlStyles.go
+++ b/xmlStyles.go
@@ -85,9 +85,6 @@ type xlsxFonts struct {
// xlsxFont directly maps the font element. This element defines the
// properties for one of the fonts used in this workbook.
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"`
@@ -95,9 +92,12 @@ type xlsxFont struct {
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"`
+ Sz *attrValFloat `xml:"sz"`
+ Color *xlsxColor `xml:"color"`
+ Name *attrValString `xml:"name"`
+ Family *attrValInt `xml:"family"`
+ Charset *attrValInt `xml:"charset"`
Scheme *attrValString `xml:"scheme"`
}