QtXlsxWriter
QtXlsxWriter copied to clipboard
How to Get Row Count and Column Count?
when I read the file I want to kown the Rows and Columns,How I can get it use API? thanks
The row and column count are constants: 1,048,576 rows, 16,384 columns. See https://support.office.com/en-gb/article/Excel-specifications-and-limits-16c69c74-3d6a-4aaf-ba35-e6eb276e8eaa
Document xlsx("xxx.xlsx"); xlsx.dimension ().lastColumn (); xlsx.dimension ().lastRow ();