# 应用程序编程接口

文档操作

# copy

复制当前选中内容

editor.copy()
1

# cut

剪切当前选中内容

editor.cut()
1

# paste

在文档当前位置粘贴内容

editor.paste()
1

# print

打印当前文档

editor.print()
1

# loadData

载入文档数据

editor.loadData(data: any)
1

# selection

返回编辑器的选择位置

editor.selection()
1

# save

保存当前文档

editor.save()
1

# saveEntry

保存当前文档内容为词条

editor.saveEntry()
1