如何从办公室内容添加打开选择数据对话(内容应用程序)

时间:2016-12-05 11:57:28

标签: office-js office-addins office365-apps apps-for-office javascript-api-for-office

如何从办公室内容中打开选择数据对话框。

时打开的同一个对话
  1. 插入Excel图表。
  2. 右键点击聊天。
  3. 选择数据 enter image description here

1 个答案:

答案 0 :(得分:0)

最后我找到了答案 Office.context.document.bindings.addFromPromptAsync做的伎俩

Office.context.document.bindings.addFromPromptAsync(Office.BindingType.Table,
        {
            id: "you id",
            promptText: "your text"
        },
        function (asyncResult) {
            if (asyncResult.status == Office.AsyncResultStatus.Succeeded) {
                if (asyncResult.value.columnCount < 2 || asyncResult.value.rowCount < 1) {
                    Office.context.document.bindings.releaseByIdAsync("DetailData");
                    myMessageBox.showErrorMessage("Insufficient detail data.");
                }
                else {
                    _detailDataBinding = asyncResult.value;
                    //do your work

                }
            }
        });