Example of setting Excel custom document properties, i.e., properties non-standard document properties.
#include "xlsxwriter.h"
int main() {
"Select 'Workbook Properties' to see properties." , NULL);
return 0;
}
Struct to represent a date and time in Excel.
Definition: common.h:159
Struct to represent an Excel workbook.
Definition: workbook.h:293
Struct to represent an Excel worksheet.
Definition: worksheet.h:2115
lxw_error workbook_set_custom_property_string(lxw_workbook *workbook, const char *name, const char *value)
Set a custom document text property.
lxw_error workbook_set_custom_property_datetime(lxw_workbook *workbook, const char *name, lxw_datetime *datetime)
Set a custom document date or time property.
lxw_workbook * workbook_new(const char *filename)
Create a new workbook object.
lxw_error workbook_set_custom_property_boolean(lxw_workbook *workbook, const char *name, uint8_t value)
Set a custom document boolean property.
lxw_error workbook_close(lxw_workbook *workbook)
Close the Workbook object and write the XLSX file.
lxw_worksheet * workbook_add_worksheet(lxw_workbook *workbook, const char *sheetname)
Add a new worksheet to a workbook.
lxw_error workbook_set_custom_property_number(lxw_workbook *workbook, const char *name, double value)
Set a custom document number property.
lxw_error worksheet_set_column(lxw_worksheet *worksheet, lxw_col_t first_col, lxw_col_t last_col, double width, lxw_format *format)
Set the properties for one or more columns of cells.
lxw_error worksheet_write_string(lxw_worksheet *worksheet, lxw_row_t row, lxw_col_t col, const char *string, lxw_format *format)
Write a string to a worksheet cell.