diff options
author | xuri <xuri.me@gmail.com> | 2021-02-08 18:05:15 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2021-02-08 18:05:15 +0800 |
commit | 30549c5e90884789fff6599d6e773d1ca56ba962 (patch) | |
tree | f8df8c92279358fc6e3cd5ed8573bbaa794f0162 /stream.go | |
parent | 2fb135bc94bbb0c487563d166fd24786fab7280a (diff) |
fix custom row height check issue
Diffstat (limited to 'stream.go')
-rw-r--r-- | stream.go | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -37,8 +37,9 @@ type StreamWriter struct { // NewStreamWriter return stream writer struct by given worksheet name for // generate new worksheet with large amounts of data. Note that after set // rows, you must call the 'Flush' method to end the streaming writing -// process and ensure that the order of line numbers is ascending. For -// example, set data for worksheet of size 102400 rows x 50 columns with +// process and ensure that the order of line numbers is ascending, the common +// API and stream API can't be work mixed to writing data on the worksheets. +// For example, set data for worksheet of size 102400 rows x 50 columns with // numbers and style: // // file := excelize.NewFile() |