diff options
Diffstat (limited to 'xmlPivotCache.go')
-rw-r--r-- | xmlPivotCache.go | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/xmlPivotCache.go b/xmlPivotCache.go index feaec54..58d977a 100644 --- a/xmlPivotCache.go +++ b/xmlPivotCache.go @@ -182,6 +182,20 @@ type xlsxError struct { // xlsxString represents a character value in a PivotTable. type xlsxString struct { + V string `xml:"v,attr"` + U bool `xml:"u,attr,omitempty"` + F bool `xml:"f,attr,omitempty"` + C string `xml:"c,attr,omitempty"` + Cp int `xml:"cp,attr,omitempty"` + In int `xml:"in,attr,omitempty"` + Bc string `xml:"bc,attr,omitempty"` + Fc string `xml:"fc,attr,omitempty"` + I bool `xml:"i,attr,omitempty"` + Un bool `xml:"un,attr,omitempty"` + St bool `xml:"st,attr,omitempty"` + B bool `xml:"b,attr,omitempty"` + Tpls *xlsxTuples `xml:"tpls"` + X *attrValInt `xml:"x"` } // xlsxDateTime represents a date-time value in the PivotTable. |