Example of setting Excel document properties.
#include "xlsxwriter.h"
int main() {
.
title =
"This is an example spreadsheet",
.subject = "With document properties",
.author = "John McNamara",
.manager = "Dr. Heinz Doofenshmirtz",
.company = "of Wolves",
.category = "Example spreadsheets",
.keywords = "Sample, Example, Properties",
.comments = "Created with libxlsxwriter",
.status = "Quo",
};
"Select 'Workbook Properties' to see properties." , NULL);
return 0;
}