-
-
Notifications
You must be signed in to change notification settings - Fork 343
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added docs and example for worksheet macro buttons.
Feature request #39
- Loading branch information
Showing
6 changed files
with
75 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,20 +6,33 @@ | |
* The vba_extract.py utility from the libxlsxwriter examples directory can be | ||
* used to extract the vbaProject.bin file. | ||
* | ||
* This example connects the macro to a button (the only Excel/VBA form object | ||
* supported by libxlsxwriter) but that isn't a requirement for adding a macro | ||
* file to the workbook. | ||
* | ||
* Copyright 2014-2021, John McNamara, [email protected] | ||
*/ | ||
|
||
#include "xlsxwriter.h" | ||
|
||
int main() { | ||
|
||
/* Note the xlsm extension of the filename */ | ||
lxw_workbook *workbook = workbook_new("macro.xlsm"); | ||
lxw_worksheet *worksheet = workbook_add_worksheet(workbook, NULL); | ||
|
||
/* Add a macro that will execute when the file is opened. */ | ||
worksheet_set_column(worksheet, COLS("A:A"), 30, NULL); | ||
|
||
/* Add a macro file extracted from an Excel workbook. */ | ||
workbook_add_vba_project(workbook, "vbaProject.bin"); | ||
|
||
worksheet_write_string(worksheet, 0, 0, "Overwrite this", NULL); | ||
worksheet_write_string(worksheet, 2, 0, "Press the button to say hello.", NULL); | ||
|
||
lxw_button_options options = {.caption = "Press Me", .macro = "say_hello", | ||
.width = 80, .height = 30}; | ||
|
||
worksheet_insert_button(worksheet, 2, 1, &options); | ||
|
||
|
||
return workbook_close(workbook); | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters