StreamWriter-like API when reading #1276
Replies: 2 comments 1 reply
-
I think we need to add new structure named |
Beta Was this translation helpful? Give feedback.
-
@xuri I was coding an Excel parser, and this was the first package I considered to use. However, I need to accurately parse each cell, while the API provided was needlessly complex for my requirement:
I pondered whether I should create a PR that exposes cell reference, but alas the type I suggest exposing a sheetRef, rowRef, colRef and cellRef (how |
Beta Was this translation helpful? Give feedback.
-
Hello,
First, thanks a lot for the amount of work you have put into this library, it's great! I'm happy to finally have an alternative to Apache POI!
I have a question that is somewhat related to an issue that was open earlier. Currently, excelize has a "stream reader" API using f.Rows() and row.Columns. Now, what Columns() returns isn't identical to what is expected when writing to a worksheet using StreamWriter. By that i mean that Columns() will only give you the cells' values, not all its attributes (value, style, formula), while on the other hand, streamwriter allows you to write the value+style+formula.
I'd like to create an API similar to StreamWriter when reading (ie. i'd like to be able to read the value+style+formula at the same time when reading a cell), do you think that would be a good idea? If yes, any pointers to get started?
Thank you! 🙏
Beta Was this translation helpful? Give feedback.
All reactions