-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feature: worksheet AddButton #1169
Labels
enhancement
New feature or request
Comments
xuri
added a commit
to JDavidVR/excelize
that referenced
this issue
Jul 11, 2023
- Breaking changes: * Change `func (f *File) AddShape(sheet, cell string, opts *Shape) error` to `func (f *File) AddShape(sheet string, opts *Shape) error` * Rename the `Runs` field to `Paragraph` in the exported `Comment` data type - Add new exported function `AddFormControl` support to add button and radio form controls - Add check for shape type for the `AddShape` function, an error will be returned if no shape type is specified - Updated functions documentation and the unit tests
xuri
added a commit
to JDavidVR/excelize
that referenced
this issue
Jul 11, 2023
- Breaking changes: * Change `func (f *File) AddShape(sheet, cell string, opts *Shape) error` to `func (f *File) AddShape(sheet string, opts *Shape) error` * Rename the `Runs` field to `Paragraph` in the exported `Comment` data type - Add new exported function `AddFormControl` support to add button and radio form controls - Add check for shape type for the `AddShape` function, an error will be returned if no shape type is specified - Updated functions documentation and the unit tests
jenbonzhang
pushed a commit
to jenbonzhang/excelize
that referenced
this issue
Oct 22, 2023
…os#1181) - Breaking changes: * Change `func (f *File) AddShape(sheet, cell string, opts *Shape) error` to `func (f *File) AddShape(sheet string, opts *Shape) error` * Rename the `Runs` field to `Paragraph` in the exported `Comment` data type - Add new exported function `AddFormControl` support to add button and radio form controls - Add check for shape type for the `AddShape` function, an error will be returned if no shape type is specified - Updated functions documentation and the unit tests
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I've reviewed documentation, and there is no information about inserting a button to xlsx file
I did some research and here is a good example to have a buttom: https://xlsxwriter.readthedocs.io/example_macros.html
So these are my findings:
Buttons are added in this file: xl/drawings/vmlDrawing1.vml
Values that are dynamics are those:
I can work on implementation but I need some guidelines, like if I should create a new go file called, button.go and a tamplate in templates.go
The text was updated successfully, but these errors were encountered: