表单控件

FormControl 定义了表单控件的属性。

  1. type FormControl struct {
  2. Cell string
  3. Macro string
  4. Width uint
  5. Height uint
  6. Checked bool
  7. CurrentVal uint
  8. MinVal uint
  9. MaxVal uint
  10. IncChange uint
  11. PageChange uint
  12. Horizontally bool
  13. CellLink string
  14. Text string
  15. Paragraph []RichTextRun
  16. Type FormControlType
  17. Format GraphicOptions
  18. }

添加表单控件

  1. func (f *File) AddFormControl(sheet string, opts FormControl) error

AddFormControl 通过给定的工作表名称和表单控件选项在工作表中添加表单控件。支持的表单控件类型为:按钮、复选框、分组框、标签、选项按钮、滚动条和微调框(调节按钮)。若需要为表单控件指定宏,保存的工作簿扩展名应为 .xlsm 或者 .xltm。滚动值应介于 0 到 30000 之间。

例1,在 Sheet1!A2 单元格添加带有指定宏、富文本、自定义尺寸和属性的按钮表单控件:

使用 Excelize 在工作表中添加按钮表单控件

  1. err := f.AddFormControl("Sheet1", excelize.FormControl{
  2. Cell: "A2",
  3. Type: excelize.FormControlButton,
  4. Macro: "Button1_Click",
  5. Width: 140,
  6. Height: 60,
  7. Text: "Button 1\r\n",
  8. Paragraph: []excelize.RichTextRun{
  9. {
  10. Font: &excelize.Font{
  11. Bold: true,
  12. Italic: true,
  13. Underline: "single",
  14. Family: "Times New Roman",
  15. Size: 14,
  16. Color: "777777",
  17. },
  18. Text: "C1=A1+B1",
  19. },
  20. },
  21. Format: excelize.GraphicOptions{
  22. PrintObject: &enable,
  23. Positioning: "absolute",
  24. },
  25. })

例2,在 Sheet1!A1Sheet1!A2 单元格添加带有选中状态的选项按钮表单控件:

使用 Excelize 在工作表中添加选项按钮表单控件

  1. if err := f.AddFormControl("Sheet1", excelize.FormControl{
  2. Cell: "A1",
  3. Type: excelize.FormControlOptionButton,
  4. Text: "Option Button 1",
  5. Checked: true,
  6. }); err != nil {
  7. fmt.Println(err)
  8. }
  9. if err := f.AddFormControl("Sheet1", excelize.FormControl{
  10. Cell: "A2",
  11. Type: excelize.FormControlOptionButton,
  12. Text: "Option Button 2",
  13. }); err != nil {
  14. fmt.Println(err)
  15. }

例3,在 Sheet1!B1 单元格添加带有控制选项的微调框(调节按钮)来增大或减小 Sheet1!A1 单元格的值:

使用 Excelize 在工作表中添加微调框(调节按钮)表单控件

  1. err := f.AddFormControl("Sheet1", excelize.FormControl{
  2. Cell: "B1",
  3. Type: excelize.FormControlSpinButton,
  4. Width: 15,
  5. Height: 40,
  6. CurrentVal: 7,
  7. MinVal: 5,
  8. MaxVal: 10,
  9. IncChange: 1,
  10. CellLink: "A1",
  11. })

例4,在 Sheet1!A2 单元格添加水平滚动条,通过拖动滚动框输入或修改 Sheet1!A1 单元格的值:

使用 Excelize 在工作表中添加水平滚动条表单控件

  1. err := f.AddFormControl("Sheet1", excelize.FormControl{
  2. Cell: "A2",
  3. Type: excelize.FormControlScrollBar,
  4. Width: 140,
  5. Height: 20,
  6. CurrentVal: 50,
  7. MinVal: 10,
  8. MaxVal: 100,
  9. IncChange: 1,
  10. PageChange: 1,
  11. CellLink: "A1",
  12. Horizontally: true,
  13. })

获取表单控件

  1. func (f *File) GetFormControls(sheet string) ([]FormControl, error)

根据给定的工作表名称获取工作表中的全部表单控件。注意,该函数目前尚未支持获取表单控件的宽高。

删除表单控件

  1. func (f *File) DeleteFormControl(sheet, cell string) error

DeleteFormControl 通过给定的工作表名称和单元格坐标删除指定的表单控件。例如,删除位于 Sheet1!$A$1 单元格的表单控件:

  1. err := f.DeleteFormControl("Sheet1", "A1")