欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

onlyOffice常用api整理(1)

程序员文章站 2022-05-26 18:01:58
...

edit.getCountPages()//总页数
editor.asc_findText(“对计算机的数据进行分析处理”) //找到文本
goToPage//跳转页
api.GetDocument().GetAllImages() //所有图片
api.GetDocument().GetAllCharts() //所有图表
etDocument().Document.GetAllTables() //表格
api.asc_GetAllFootNoteParagraphs() //脚
asc_GetAllEndNoteParagraphs() //尾注
bCanUndo[2].Value.Class.Paragraph.RemoveHyperlink() //移除超链接

api.GetDocument().Document.GetCurrentParagraph().GetText() //获取当前段落
api.GetDocument().Document.GetCurrentParagraph().GetFirstRun().GetText() //获取当前第一段
api.GetDocument().Document.GoToBookmark //跳转书签
api.GetDocument().Document.GetCurrentParagraph().GetOutlineLvl() //判断是否事目录

api.GetDocument().GetFinalSection().RemoveHeader(“default”) //关闭页眉
api.GetCurrentVisiblePage() //获取当前页
api.asc_nativeGetHtml() //获取全文的HTML
//获取鼠标位置

var oDocument = api.GetDocument();
let oParagraph = oDocument.Document.GetCurrentParagraph();
var contents = oParagraph.Content;
var curpos = oParagraph.CurPos;
var index=contents[curpos.ContentPos].State.ContentPos