mirror of
https://github.com/jmcnamara/libxlsxwriter
synced 2025-03-28 21:13:14 +00:00

Renamed worksheet_set_column() function to worksheet_set_column_opt() for consistency with current and future APIs. The worksheet_set_column() function is now used without the option. This is a backward incompatible change.
33 lines
1.0 KiB
C
33 lines
1.0 KiB
C
/*
|
|
* Example of how to hide a worksheet using libxlsxwriter.
|
|
*
|
|
* Copyright 2014-2015, John McNamara, jmcnamara@cpan.org
|
|
*
|
|
*/
|
|
|
|
#include "xlsxwriter.h"
|
|
|
|
int main() {
|
|
|
|
lxw_workbook *workbook = new_workbook("hide_sheet.xlsx");
|
|
lxw_worksheet *worksheet1 = workbook_add_worksheet(workbook, NULL);
|
|
lxw_worksheet *worksheet2 = workbook_add_worksheet(workbook, NULL);
|
|
lxw_worksheet *worksheet3 = workbook_add_worksheet(workbook, NULL);
|
|
|
|
/* Hide Sheet2. It won't be visible until it is unhidden in Excel. */
|
|
worksheet_hide(worksheet2);
|
|
|
|
worksheet_write_string(worksheet1, 0, 0, "Sheet2 is hidden", NULL);
|
|
worksheet_write_string(worksheet2, 0, 0, "Now it's my turn to find you!", NULL);
|
|
worksheet_write_string(worksheet3, 0, 0, "Sheet2 is hidden", NULL);
|
|
|
|
/* Make the first column wider to make the text clearer. */
|
|
worksheet_set_column(worksheet1, 0, 0, 30, NULL);
|
|
worksheet_set_column(worksheet2, 0, 0, 30, NULL);
|
|
worksheet_set_column(worksheet3, 0, 0, 30, NULL);
|
|
|
|
workbook_close(workbook);
|
|
|
|
return 0;
|
|
}
|