2014-06-08 17:40:59 +01:00
|
|
|
/*
|
|
|
|
* Example of writing some data with font formatting to a simple Excel
|
|
|
|
* file using libxlsxwriter.
|
|
|
|
*
|
2025-02-11 00:03:36 +00:00
|
|
|
* Copyright 2014-2025, John McNamara, jmcnamara@cpan.org
|
2014-06-08 17:40:59 +01:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "xlsxwriter.h"
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
|
|
|
|
/* Create a new workbook. */
|
2016-01-04 19:48:16 +00:00
|
|
|
lxw_workbook *workbook = workbook_new("format_font.xlsx");
|
2014-06-08 17:40:59 +01:00
|
|
|
|
|
|
|
/* Add a worksheet. */
|
|
|
|
lxw_worksheet *worksheet = workbook_add_worksheet(workbook, NULL);
|
|
|
|
|
2014-06-20 01:00:21 +01:00
|
|
|
/* Widen the first column to make the text clearer. */
|
2016-01-04 00:01:00 +00:00
|
|
|
worksheet_set_column(worksheet, 0, 0, 20, NULL);
|
2014-06-20 01:00:21 +01:00
|
|
|
|
2014-06-08 17:40:59 +01:00
|
|
|
/* Add some formats. */
|
|
|
|
lxw_format *format1 = workbook_add_format(workbook);
|
|
|
|
lxw_format *format2 = workbook_add_format(workbook);
|
|
|
|
lxw_format *format3 = workbook_add_format(workbook);
|
|
|
|
|
|
|
|
/* Set the bold property for format 1. */
|
|
|
|
format_set_bold(format1);
|
|
|
|
|
|
|
|
/* Set the italic property for format 2. */
|
|
|
|
format_set_italic(format2);
|
|
|
|
|
|
|
|
/* Set the bold and italic properties for format 3. */
|
|
|
|
format_set_bold (format3);
|
|
|
|
format_set_italic(format3);
|
|
|
|
|
|
|
|
/* Write some formatted strings. */
|
|
|
|
worksheet_write_string(worksheet, 0, 0, "This is bold", format1);
|
|
|
|
worksheet_write_string(worksheet, 1, 0, "This is italic", format2);
|
|
|
|
worksheet_write_string(worksheet, 2, 0, "Bold and italic", format3);
|
|
|
|
|
|
|
|
/* Close the workbook, save the file and free any memory. */
|
|
|
|
workbook_close(workbook);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|