diff options
author | jialei <31276367+MichealJl@users.noreply.github.com> | 2022-06-13 23:38:59 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-13 23:38:59 +0800 |
commit | d490a0f86f02f7f2eeabd8a0f38cbaa82a669187 (patch) | |
tree | 58dbcd42c8c33faa60bae10e606ab251dc8319c3 /xmlStyles.go | |
parent | d383f0ae6e253284520d10e574a01b0b904c91d9 (diff) |
RichTextRun support set superscript and subscript by vertAlign attribute (#1252)
check vertical align enumeration, update set rich text docs and test
Diffstat (limited to 'xmlStyles.go')
-rw-r--r-- | xmlStyles.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xmlStyles.go b/xmlStyles.go index 71fe9a6..0000d45 100644 --- a/xmlStyles.go +++ b/xmlStyles.go @@ -341,6 +341,7 @@ type Font struct { Size float64 `json:"size"` Strike bool `json:"strike"` Color string `json:"color"` + VertAlign string `json:"vertAlign"` } // Fill directly maps the fill settings of the cells. |