diff options
author | MJacred <loesch.benny92@gmx.de> | 2022-07-14 17:36:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-14 23:36:43 +0800 |
commit | 6429588e1448f70539774a88840f094829cb9e07 (patch) | |
tree | be54a60658885cfb27d037f06af457dda5644c3a /xmlDrawing.go | |
parent | e37724c22b95de974f0235e992236d555aa6ad12 (diff) |
adjust `ErrColumnNumber`, rename `TotalColumns` to `MaxColumns` and add new constant `MinColumns` (#1272)
Signed-off-by: Benjamin Lösch <loesch.benny92@gmx.de>
Diffstat (limited to 'xmlDrawing.go')
-rw-r--r-- | xmlDrawing.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xmlDrawing.go b/xmlDrawing.go index 4808685..3e54b72 100644 --- a/xmlDrawing.go +++ b/xmlDrawing.go @@ -109,7 +109,8 @@ const ( MaxRowHeight = 409 MinFontSize = 1 TotalRows = 1048576 - TotalColumns = 16384 + MinColumns = 1 + MaxColumns = 16384 TotalSheetHyperlinks = 65529 TotalCellChars = 32767 // pivotTableVersion should be greater than 3. One or more of the |