summaryrefslogtreecommitdiff
path: root/xmlWorksheet.go
diff options
context:
space:
mode:
Diffstat (limited to 'xmlWorksheet.go')
-rw-r--r--xmlWorksheet.go9
1 files changed, 6 insertions, 3 deletions
diff --git a/xmlWorksheet.go b/xmlWorksheet.go
index 0c0fe92..81e9ff9 100644
--- a/xmlWorksheet.go
+++ b/xmlWorksheet.go
@@ -465,9 +465,12 @@ type xlsxC struct {
R string `xml:"r,attr,omitempty"` // Cell ID, e.g. A1
S int `xml:"s,attr,omitempty"` // Style reference.
// Str string `xml:"str,attr,omitempty"` // Style reference.
- T string `xml:"t,attr,omitempty"` // Type.
- F *xlsxF `xml:"f,omitempty"` // Formula
- V string `xml:"v,omitempty"` // Value
+ T string `xml:"t,attr,omitempty"` // Type.
+ Cm *uint `xml:"cm,attr,omitempty"` //
+ Vm *uint `xml:"vm,attr,omitempty"` //
+ Ph *bool `xml:"ph,attr,omitempty"` //
+ F *xlsxF `xml:"f,omitempty"` // Formula
+ V string `xml:"v,omitempty"` // Value
IS *xlsxSI `xml:"is"`
}