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.
23 lines
357 B
23 lines
357 B
#include <QtCore>
|
|
#include "xlsxdocument.h"
|
|
|
|
int main()
|
|
{
|
|
//![0]
|
|
QXlsx::Document xlsx;
|
|
//![0]
|
|
|
|
//![1]
|
|
xlsx.write("A1", "Hello Qt!");
|
|
xlsx.write("A2", 12345);
|
|
xlsx.write("A3", "=44+33");
|
|
xlsx.write("A4", true);
|
|
xlsx.write("A5", "http://qt-project.org");
|
|
//![1]
|
|
|
|
//![2]
|
|
xlsx.save();
|
|
//![2]
|
|
|
|
return 0;
|
|
}
|
|
|