You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
361 B

#include <QtCore>
#include "xlsxworkbook.h"
#include "xlsxworksheet.h"
int main(int argc, char* argv[])
{
#ifdef Q_OS_MAC
QXlsx::Workbook workbook("../../../Test.xlsx");
#else
QXlsx::Workbook workbook("Test.xlsx");
#endif
QXlsx::Worksheet *sheet = workbook.addWorksheet();
sheet->write("A1", "Hello Qt!");
workbook.close();
return 0;
}