彩票走势图

WebOffice初学者使用教程:常用功能函数使用(二)

翻译|使用教程|编辑:杨鹏连|2021-07-01 10:59:25.030|阅读 321 次

概述:本文档全面介绍WEB前端如何集成WebOffice控件,通过Javascript编程实现控件功能接口的调用,达到解决Web项目需求的目的,掌握此前端设计后将会理解WebOffice以View层的解决方案从而适合任意Web项目架构。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

WebOffice控件是国内领先的在线编辑Office文档软件,软件产品从1998年立项至今已有20多年历史,期间服务了众多大中小型企业、各级政府机关、科研机构和学校等事业单位。通过WebOffice软件可以让用户方便从远程直接打开Word,Excel,Ppt等文档编辑后再次保存至服务器原位置,实现远程编辑文档、远程保存,为用户在线办公开创新式、便捷的使用体验。

WebOffice文档控件(标准版永久授权)原价8000元,现活动优惠价只需7846元 >>查看其他版本

点击下载WebOffice正式版

相关内容推荐:

WebOffice 使用教程>>>

WebOffice使用教程:WebOffice常用API接口在线参考手册(一)>>>

WebOffice使用教程:WebOffice常用API接口在线参考手册(二)>>

WebOffice使用教程:WebOffice常用API接口在线参考手册(三)>>

WebOffice使用教程:WebOffice常用API接口在线参考手册(四)>>

WebOffice初学者使用教程:Javascript编程原理(一)>>

WebOffice初学者使用教程:宏编程与JavaScript编码的转换>>

WebOffice初学者使用教程:调用WebBrowser智能窗实现跨浏览器

WebOffice初学者使用教程:常用功能函数使用(一)>>

五、常用功能函数使用

5.7、加入URL图片
 加入远程 URL 图片
Var weboffice = document.getElementById("WebOffice");
var strFile = WebOffice.WebSignTempFile; 
WebOffice.DownloadFile('//www.officectrl.com/officecs/images/weboffice.jpg',strFile); 
WebOffice.SetFieldValue('mark_1','','::ADDMARK::');
WebOffice.SetFieldValue('mark_1',strFile,'::JPG::');

5.8、痕迹保留

让进入文档痕迹保留状态 
        var WebOffice=document.getElementById("WebOffice"); 
        WebOffice.SetTrackRevisions(1) 
隐藏文档痕迹 
        var WebOffice=document.getElementById("WebOffice"); 
        WebOffice.ShowRevisions(0);
显示文档痕迹
       var WebOffice=document.getElementById("WebOffice"); 
       WebOffice.ShowRevisions(1);
 退出痕迹保留状态
 
      var WebOffice=document.getElementById("WebOffice"); 
       WebOffice.SetTrackRevisions(0);
 接受所有修改内容
        var WebOffice=document.getElementById("WebOffice"); 
        WebOffice.SetTrackRevisions(4);   
接受当前显示的修改内容
        var WebOffice=document.getElementById("WebOffice"); 
        WebOffice.ActiveDocument.AcceptAllRevisionsShown();
不接受所有修改的内容
        var WebOffice=document.getElementById("WebOffice"); 
        WebOffice.ActiveDocument.RejectAllRevisions();
痕迹统计
        var WebOffice=document.getElementById("WebOffice"); 
        WebOffice.showdialog(6);

5.9、键盘批注

添加键盘批注
//user为作者名称,info为要添加键盘批注的具体内容
var WebOffice = document.getElementById("WebOffice");
WebOffice.GetApplication.username=User; 
WebOffice.GetApplication.Selection.Comments.Add(WebOffice.GetApplication.Selection.Range,info);
5.10、电子章
//这里可以加JS密码认证等   
var strFile = WebOffice.WebSignTempFile; 
WebOffice.DownloadFile('图片章URL地址',strFile); 
WebOffice.SetFieldValue('mark_1','','::ADDMARK::');
WebOffice.SetFieldValue('mark_1',strFile,'::FLOATJPG::');
//加章后可以加入文档密码保护等功能语句
WebOffice.ProtectDoc(1,1,pwd);//pwd为密码值
//如要重新修改文档可以解保护
WebOffice.ProtectDoc(0,1,pwd); //pwd为保护文档使用的密码值
//加章后也可以把文档转为PDF具体如何转PDF可以参考WebOffice常用Javascript库或相关示例。
5.11、模板套红
一、setfieldvalue接口方式’
markname书签名称,strPath为DOC文件的路径如://www.officectrl.com/weboffice/temp/file1.doc
var WebOffice=document.getElementById("WebOffice"); 
WebOffice.SetFieldValue(markname,'','::ADDMARK::');
WebOffice.SetFieldValue(markname,strPath,'::FILE::');
二、insertfile接口方式
strPath为DOC文件的路径如://www.officectrl.com/weboffice/temp/file1.doc
var WebOffice=document.getElementById("WebOffice");        
WebOffice.InsertFile(strPath,0);
三、vba方式
strValue='OfficeCTRL技术开发中心发文';
         var myRange=WebOffice.ActiveDocument.Range(0,0); 
         myRange.Select();        
         var mtext="★";
         WebOffice.ActiveDocument.Application.Selection.Range.InsertAfter (mtext+"\n");
         var myRange=WebOffice.ActiveDocument.Paragraphs(1).Range;
         myRange.ParagraphFormat.LineSpacingRule =1.5;
         myRange.font.ColorIndex=6;
         myRange.ParagraphFormat.Alignment=1;
         myRange=WebOffice.ActiveDocument.Range(0,0);
         myRange.Select();                 
         mtext="[2016]172号";
         WebOffice.ActiveDocument.Application.Selection.Range.InsertAfter (mtext+"\n");
         myRange=WebOffice.ActiveDocument.Paragraphs(1).Range;
         myRange.ParagraphFormat.LineSpacingRule =1.5;
         myRange.ParagraphFormat.Alignment=1;
         myRange.font.ColorIndex=1;        
         mtext=strValue;
         WebOffice.ActiveDocument.Application.Selection.Range.InsertAfter (mtext+"\n");
         myRange=WebOffice.ActiveDocument.Paragraphs(1).Range;
         myRange.ParagraphFormat.LineSpacingRule =1.5;     
         //myRange.Select();
         myRange.Font.ColorIndex=6;
         myRange.Font.Name="仿宋_GB2312";
         myRange.font.Bold=true;
         myRange.Font.Size=28;
         myRange.ParagraphFormat.Alignment=1;      
         //myRange=myRange=WebOffice.ActiveDocument.Paragraphs(1).Range;
         WebOffice.ActiveDocument.PageSetup.LeftMargin=70;
         WebOffice.ActiveDocument.PageSetup.RightMargin=70;
         WebOffice.ActiveDocument.PageSetup.TopMargin=70;
         WebOffice.ActiveDocument.PageSetup.BottomMargin=70;

5.12、制作报表

制作报表时,可以要把制作的报表设计成HTML网页模板格式,然后通过WebaddHtml接口加即可,这样word会自动展示 
var WebOffice=document.getElementById("WebOffice");  
WebOffice.WebAddHtml(strPath);
5.13、文档保护与解除保护
ProtectDOC 设置文档保护 
//pwd用于设置保护文档的密码,可以空值
var WebOffice=document.getElementById("WebOffice"); 
WebOffice.ProtectDoc(1,1,pwd);
UnProtectDOC 解除文档保护
//pwd用于解除文档保护的密码,此值应与设置文档保护时的密码一致
var WebOffice=document.getElementById("WebOffice"); 
WebOffice.ProtectDoc(0,1,pwd);

5.14、区域编辑限制

一、使用Word工具栏自带的限制编辑功能设置好文档哪些位置是可以编辑的,这个如果不懂可以网络查找Word如何设置此功能。
二、让Word里设置好的限制编辑生效
var WebOffice=document.getElementById("WebOffice"); 
//123为密码值
WebOffice.ActiveDocument.Application.ActiveDocument.Protect(3,0,"123",0,1);
三、解除限制
var WebOffice=document.getElementById("WebOffice"); 
WebOffice.ActiveDocument.Application.ActiveDocument.UnProtect("123");//123为文档保护的密码

5.15、缩略图任意页生成

缩略图保存
function  saveThumbPic(flag,strSaveUrl) { 
                 var WebOffice=document.getElementById("WebOffice"); 
                 //word时 ThumbIndentx值设为300,具体多少可以看效果来调整宽度
                 //excel,ppt时 ThumbIndentx值设为0
                 //ThumbIndenty值一般为25,也可以看生成的效果图来调整高度
                 switch(flag)
                  {
                  case '1':
WebOffice.ThumbIndentx='300'; break;
                  case '2':
WebOffice.ThumbIndentx='0'; break;
                  case '3': 
WebOffice.ThumbIndentx='0'; break; 
} 
                 WebOffice.ThumbIndenty='25';
                 var rss=WebOffice.WebThumbnail(1,strSaveUrl);
                 if(rss==''){alert('已生成成功,请确认!');} 
}
*flag值1 word,2 excel,3,powerpoint
*strSaveUrl为jsp,php,aspx,node.js等的上传文件接收器,地址如://www.officectrl.com/officecs/upload.aspx?id=1 形式
*strSaveUrl对应接收器代码写法与用Save方法保存文件时的接收器写法一样的,只是一个保存WORD文档,另一个是保存图片,Save方法接收器写法示例已有写好可参考具体教程 ://www.officectrl.com/lession/2/webofficesave.html
*strSaveUrl对应接收器代码示例已有写好,可以下载综合示例:
*//www.officectrl.com/down/webofficecs.rar后查看 pic.aspx
*//www.officectrl.com/down/WebOfficeJsp-Mysql.rar后查看 uploadedit.jsp把代码里的 word或excel等扩展名改为.jpg即可用于此缩略图保存
*//www.officectrl.com/down/WebOfficePhp-MySql.rar后查看 pic.php
想要购买WebOffice正版授权,或了解更多产品信息请点击


标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn

文章转载自:

为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP