diff options
author | Ri Xu <xuri.me@gmail.com> | 2017-06-29 11:14:33 +0800 |
---|---|---|
committer | Ri Xu <xuri.me@gmail.com> | 2017-06-29 11:14:33 +0800 |
commit | 86466654e270786428540e34fd0a61e7d537a99c (patch) | |
tree | a54a14a9c6d3de0342d0f43b375e61c2b4aa8fcc /xmlWorksheet.go | |
parent | 14eca84073c05e7514634c0949785256295a7500 (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.go | 2 |
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"` |