-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Include sheet state in listWorksheetInfo #4345
Comments
Would you need sheetState returned all the time, or just in cases where it isn't visible? The latter would probably be easier for me, and less likely to be viewed as a breaking change (existing results would change, though it's hard for me to imagine what might break as a result, but sometimes I don't have enough imagination). |
For our use cases, we would need a reliable way to detect if a worksheet is visible or not. If the |
Thank you for the input. I am still considering the best approach. The fact that four different input types (csv, html, slk, and xml) don't support any state other than 'visible' is a factor. |
Fix PHPOffice#4345. Add a new item to the output array. Although the output is changed, this does not seem like a breaking change to me.
The method
listWorksheetInfo
is great for analyzing an Excel workbook without loading it (and therefore consuming a lot of memory). Sadly, it is missing the sheet state of the worksheets. Adding the sheet state to the output oflistWorksheetInfo
would make reasoning about workbooks and their worksheets more flexibel.The text was updated successfully, but these errors were encountered: