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.
20 lines
722 B
20 lines
722 B
#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;
|
|
}
|
|
|