onlyOffice常用api整理(1)

  • Post author:
  • Post category:其他


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



版权声明:本文为weixin_46472377原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。