Word.AnnotationPopupActionEventArgs interface

表示在批注弹出操作事件上传递回的操作信息。

注解

[ API 集:WordApi 1.8 ]

示例

// Link to full sample: https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/50-document/manage-annotations.yaml

// Registers event handlers.
await Word.run(async (context) => {
  eventContexts[0] = context.document.onParagraphAdded.add(paragraphChanged);
  eventContexts[1] = context.document.onParagraphChanged.add(paragraphChanged);

  eventContexts[2] = context.document.onAnnotationClicked.add(onClickedHandler);
  eventContexts[3] = context.document.onAnnotationHovered.add(onHoveredHandler);
  eventContexts[4] = context.document.onAnnotationInserted.add(onInsertedHandler);
  eventContexts[5] = context.document.onAnnotationRemoved.add(onRemovedHandler);
  eventContexts[6] = context.document.onAnnotationPopupAction.add(onPopupActionHandler);

  await context.sync();

  console.log("Event handlers registered.");
});

...

async function onPopupActionHandler(args: Word.AnnotationPopupActionEventArgs) {
  await Word.run(async (context) => {
    let message = `AnnotationPopupAction: ID ${args.id} = `;
    if (args.action === "Accept") {
      message += `Accepted: ${args.critiqueSuggestion}`;
    } else {
      message += "Rejected";
    }

    console.log(message);
  });
}

属性

action

指定弹出菜单中的所选操作。

critiqueSuggestion

指定接受的建议 (仅在接受批评建议时填充) 。

id

指定为其触发事件的批注 ID。

属性详细信息

action

指定弹出菜单中的所选操作。

action: string;

属性值

string

注解

[ API 集:WordApi 1.8 ]

critiqueSuggestion

指定接受的建议 (仅在接受批评建议时填充) 。

critiqueSuggestion: string;

属性值

string

注解

[ API 集:WordApi 1.8 ]

id

指定为其触发事件的批注 ID。

id: string;

属性值

string

注解

[ API 集:WordApi 1.8 ]