OneNote Javascript加载项getActiveparagraph()始终返回null

时间:2019-01-13 02:04:22

标签: office-addins onenote onenote-api

我正在使用OneNote任务窗格加载项,希望在其中根据当前选择的段落在特定位置添加数据。

但是,我无法使getActiveparagraphOrNull()(在应用程序类中)永远返回非null的段落类型?

有人成功做到了吗?我认为这可能是API中的错误,但想检查是否有问题。我可以轻松获取活动的部分,页面或大纲。拿这个代码片段

function currentparagraph(){
OneNote.run(function (context) {
    var paragraph = context.application.getActiveParagraphOrNull();
    console.log(paragraph);

在控制台中返回的对象始终将IsNull设置为true。我无法弄清楚为什么它不会在当前段落中有所体现。有什么想法吗?

0 个答案:

没有答案