diff options
author | xuri <xuri.me@gmail.com> | 2022-08-17 10:59:52 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-17 10:59:52 +0800 |
commit | d1e76fc432ac5c9bde99591ec5e88e46b62d9c3d (patch) | |
tree | 8e5c13bff106593ecd5dbabbd0a4fae4fefe901e /rows.go | |
parent | 551fb8a9e4b03fe718a339e75aeacc8b5581378a (diff) |
This closes #1319, fix calculate error for formula with negative symbol
- Update unit test and comment for the functions
Diffstat (limited to 'rows.go')
-rw-r--r-- | rows.go | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -179,6 +179,7 @@ func (rows *Rows) Columns(opts ...Options) ([]string, error) { return rowIterator.columns, rowIterator.err } +// extractRowOpts extract row element attributes. func extractRowOpts(attrs []xml.Attr) RowOpts { rowOpts := RowOpts{Height: defaultRowHeight} if styleID, err := attrValToInt("s", attrs); err == nil && styleID > 0 && styleID < MaxCellStyles { |