diff options
author | xuri <xuri.me@gmail.com> | 2021-01-20 00:14:21 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2021-01-20 00:14:21 +0800 |
commit | 1bc5302007e04b83ed542fee993e9a79aea9e370 (patch) | |
tree | 3b7a1feb954e0f535dda2a6ecd1ebb9683e1b41a /sheet.go | |
parent | b260485f29038ca8df9993edb1c021672b3df7e4 (diff) |
Fixed #764, add a condition for round precision
Diffstat (limited to 'sheet.go')
-rw-r--r-- | sheet.go | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1137,7 +1137,7 @@ type PageLayoutOptionPtr interface { type ( // BlackAndWhite specified print black and white. BlackAndWhite bool - // FirstPageNumber specified first printed page number. If no value is + // FirstPageNumber specified the first printed page number. If no value is // specified, then 'automatic' is assumed. FirstPageNumber uint // PageLayoutOrientation defines the orientation of page layout for a @@ -1145,9 +1145,9 @@ type ( PageLayoutOrientation string // PageLayoutPaperSize defines the paper size of the worksheet. PageLayoutPaperSize int - // FitToHeight specified number of vertical pages to fit on. + // FitToHeight specified the number of vertical pages to fit on. FitToHeight int - // FitToWidth specified number of horizontal pages to fit on. + // FitToWidth specified the number of horizontal pages to fit on. FitToWidth int // PageLayoutScale defines the print scaling. This attribute is restricted // to values ranging from 10 (10%) to 400 (400%). This setting is |