summaryrefslogtreecommitdiff
path: root/xmlWorksheet.go
diff options
context:
space:
mode:
authorRi Xu <xuri.me@gmail.com>2017-06-29 11:14:33 +0800
committerRi Xu <xuri.me@gmail.com>2017-06-29 11:14:33 +0800
commit86466654e270786428540e34fd0a61e7d537a99c (patch)
treea54a14a9c6d3de0342d0f43b375e61c2b4aa8fcc /xmlWorksheet.go
parent14eca84073c05e7514634c0949785256295a7500 (diff)
- Unify the index row number index of functions `SetRowHeight()` and `GetRowHeight()` relate issue #68;
- Unify the return value data type of functions `SetColWidth()` and `GetColWidth()`; - go test updated
Diffstat (limited to 'xmlWorksheet.go')
-rw-r--r--xmlWorksheet.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmlWorksheet.go b/xmlWorksheet.go
index 175fc3c..9f6b260 100644
--- a/xmlWorksheet.go
+++ b/xmlWorksheet.go
@@ -263,7 +263,7 @@ type xlsxRow struct {
CustomFormat bool `xml:"customFormat,attr,omitempty"`
CustomHeight bool `xml:"customHeight,attr,omitempty"`
Hidden bool `xml:"hidden,attr,omitempty"`
- Ht string `xml:"ht,attr,omitempty"`
+ Ht float64 `xml:"ht,attr,omitempty"`
OutlineLevel uint8 `xml:"outlineLevel,attr,omitempty"`
Ph bool `xml:"ph,attr,omitempty"`
R int `xml:"r,attr,omitempty"`