diff options
author | xuri <xuri.me@gmail.com> | 2020-09-18 22:20:58 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2020-09-18 22:20:58 +0800 |
commit | 324f87bcaed9ec775c0b79627956a093ad481d36 (patch) | |
tree | 56a779bde041b3dae82ab0f2e827ed0021c3d602 /xmlDrawing.go | |
parent | 96917e4617c9e7eb15c0ee1723a042f169321430 (diff) |
add checking and limits for the worksheet
Diffstat (limited to 'xmlDrawing.go')
-rw-r--r-- | xmlDrawing.go | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/xmlDrawing.go b/xmlDrawing.go index e3e496a..91b6b59 100644 --- a/xmlDrawing.go +++ b/xmlDrawing.go @@ -89,7 +89,11 @@ const ( // Excel specifications and limits const ( - FileNameLength = 207 + MaxFontFamilyLength = 31 + MaxFontSize = 409 + MaxFileNameLength = 207 + MaxColumnWidth = 255 + MaxRowHeight = 409 TotalRows = 1048576 TotalColumns = 16384 TotalSheetHyperlinks = 65529 |