如果希望用户点击按钮隐藏excel的行号列标
编写后台代码如下:
PageOfficeCtrl poCtrl1 = new PageOfficeCtrl(request);
poCtrl1.addCustomToolButton("隐藏excel的行号列标", "HideHeadings()", 0);
poCtrl1.setTagId("PageOfficeCtrl1"); //设置PageOfficeCtrl控件的id
在前台html中添加javascript函数
function HideHeadings(){
document.getElementById("PageOfficeCtrl1").Document.Application.ActiveWindow.DisplayHeadings = false; //隐藏行号列标
}