AddCustomToolButton
AddCustomToolButton 给自定义工具栏添加自定义按钮。
语法:
pdfctrl.AddCustomToolButton(caption, jsFunction , iconIndex);
参数 | 描述 |
---|---|
caption | 字符串类型。按钮的标题。如果 caption 定义为 "-",表示此按钮是分隔线。 |
jsFunction | 字符串类型。JavaScript 函数的名字。当用户点击当前按钮时触发此 JavaScript 函数。 |
iconIndex | int类型。按钮图标的索引。PageOffice内置了若干图标,您可以选择使用其中的图标。默认值是 0。 |
PageOffice内置图标索引如下:
示例:
pdfctrl.AddCustomToolButton("保存", "SaveDocument()", 1);
pdfctrl.AddCustomToolButton("打印", "ShowPrintDlg()", 6);
pdfctrl.AddCustomToolButton("全屏切换", "SwitchFullScreen()", 4);