diff options
author | tonnyzhang <450024933@qq.com> | 2021-02-22 06:04:13 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-22 20:04:13 +0800 |
commit | bbb8ebfa8cc648ec09094d16eddebb03240baecf (patch) | |
tree | 95e74fa22a61bebc3f51023589e4e081fe898799 /xmlSharedStrings.go | |
parent | 283339534741d3f0ff01c2ed2adc7c87445edf07 (diff) |
add GetCellRichText method and test (#789)
Diffstat (limited to 'xmlSharedStrings.go')
-rw-r--r-- | xmlSharedStrings.go | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/xmlSharedStrings.go b/xmlSharedStrings.go index f59119f..c9f311b 100644 --- a/xmlSharedStrings.go +++ b/xmlSharedStrings.go @@ -86,13 +86,13 @@ type xlsxRPr struct { RFont *attrValString `xml:"rFont"` Charset *attrValInt `xml:"charset"` Family *attrValInt `xml:"family"` - B string `xml:"b,omitempty"` - I string `xml:"i,omitempty"` - Strike string `xml:"strike,omitempty"` - Outline string `xml:"outline,omitempty"` - Shadow string `xml:"shadow,omitempty"` - Condense string `xml:"condense,omitempty"` - Extend string `xml:"extend,omitempty"` + B *string `xml:"b"` + I *string `xml:"i"` + Strike *string `xml:"strike"` + Outline *string `xml:"outline"` + Shadow *string `xml:"shadow"` + Condense *string `xml:"condense"` + Extend *string `xml:"extend"` Color *xlsxColor `xml:"color"` Sz *attrValFloat `xml:"sz"` U *attrValString `xml:"u"` |