6.10 weboffice新版改造,版本20220624

This commit is contained in:
jl-zhoujl2
2022-06-10 10:18:25 +08:00
parent e92f573281
commit 4605e48fca
20 changed files with 168 additions and 1188 deletions

View File

@ -0,0 +1,14 @@
var ntko;//控件对象
//初始化去打开文档
function init(path) {
ntko = document.getElementById("TANGER_OCX");
ntko.OpenFromURL(path);
ntko.SetReadOnly(true);//只读
ntko.TitleBar = false;//不显示标题栏
ntko.CustomToolBar = false;//不显示自定义工具栏
ntko.FileSave = false;//禁用文档本身的保存功能
}