summaryrefslogtreecommitdiff
path: root/xmlStyles.go
diff options
context:
space:
mode:
Diffstat (limited to 'xmlStyles.go')
-rw-r--r--xmlStyles.go13
1 files changed, 12 insertions, 1 deletions
diff --git a/xmlStyles.go b/xmlStyles.go
index 954e431..62bf0f5 100644
--- a/xmlStyles.go
+++ b/xmlStyles.go
@@ -277,10 +277,21 @@ type formatCellStyle struct {
Color string `json:"color"`
Style int `json:"style"`
} `json:"border"`
- Fill []struct {
+ Fill struct {
Type string `json:"type"`
Pattern int `json:"pattern"`
Color []string `json:"color"`
Shading int `json:"shading"`
} `json:"fill"`
+ Alignment *struct {
+ Horizontal string `json:"horizontal"`
+ Indent int `json:"indent,omitempty"`
+ JustifyLastLine bool `json:"justify_last_line"`
+ ReadingOrder uint64 `json:"reading_order"`
+ RelativeIndent int `json:"relative_indent"`
+ ShrinkToFit bool `json:"shrink_to_fit"`
+ TextRotation int `json:"text_rotation"`
+ Vertical string `json:"vertical"`
+ WrapText bool `json:"wrap_text"`
+ } `json:"alignment"`
}