【Foxit PDF SDK for Web】如何屏蔽或隐藏注释工具栏里的“导入”与“导出”按钮?

参考SDK包中的这个demo:/examples/UIExtension/fragment_usage/hide-component-by-fragment-config.html ,在初始化pdfui实例对象的时候,fragments配置项中进行如下设置:

fragments: [{
    target: 'comment-tab-group-import-export',
    action: FRAGMENT_ACTION.EXT,
    config: {
        visible: false // Set to false to hide the button
    }
}