mirror of
https://github.com/QtExcel/QXlsx.git
synced 2025-01-16 04:42:53 +08:00
21 lines
722 B
C++
21 lines
722 B
C++
|
#include <QtCore>
|
||
|
#include "xlsxdocument.h"
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
QXlsx::Document xlsx;
|
||
|
xlsx.write("A1", "View the properties through:");
|
||
|
xlsx.write("A2", "Office Button -> Prepare -> Properties option in Excel");
|
||
|
|
||
|
xlsx.setDocumentProperty("title", "This is an example spreadsheet");
|
||
|
xlsx.setDocumentProperty("subject", "With document properties");
|
||
|
xlsx.setDocumentProperty("creator", "Debao Zhang");
|
||
|
xlsx.setDocumentProperty("company", "HMICN");
|
||
|
xlsx.setDocumentProperty("category", "Example spreadsheets");
|
||
|
xlsx.setDocumentProperty("keywords", "Sample, Example, Properties");
|
||
|
xlsx.setDocumentProperty("description", "Created with Qt Xlsx");
|
||
|
|
||
|
xlsx.saveAs("Test.xlsx");
|
||
|
return 0;
|
||
|
}
|