Word.ContentControlAddedEventArgs interface
contentControlAdded イベントを発生させたコンテンツ コントロールに関する情報を提供します。
注釈
例
// Link to full sample: https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/10-content-controls/content-control-onadded-event.yaml
// Registers the onAdded event handler on the document.
await Word.run(async (context) => {
eventContext = context.document.onContentControlAdded.add(contentControlAdded);
await context.sync();
console.log("Added event handler for when content controls are added.");
});
...
async function contentControlAdded(event: Word.ContentControlAddedEventArgs) {
await Word.run(async (context) => {
console.log(`${event.eventType} event detected. IDs of content controls that were added:`, event.ids);
});
}
プロパティ
event |
イベントの種類。 「Word」を参照してください。詳細については、EventType を参照してください。 |
ids | コンテンツ コントロール ID を取得します。 |
source | イベントのソース。 ローカルまたはリモート (共同編集を使用) できます。 |
プロパティの詳細
eventType
イベントの種類。 「Word」を参照してください。詳細については、EventType を参照してください。
eventType: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded" | "CommentDeleted" | "CommentSelected" | "CommentDeselected" | "CommentChanged" | "CommentAdded" | "ContentControlEntered" | "ContentControlExited" | "ParagraphAdded" | "ParagraphChanged" | "ParagraphDeleted" | "AnnotationClicked" | "AnnotationHovered" | "AnnotationInserted" | "AnnotationRemoved" | "AnnotationPopupAction";
プロパティ値
Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded" | "CommentDeleted" | "CommentSelected" | "CommentDeselected" | "CommentChanged" | "CommentAdded" | "ContentControlEntered" | "ContentControlExited" | "ParagraphAdded" | "ParagraphChanged" | "ParagraphDeleted" | "AnnotationClicked" | "AnnotationHovered" | "AnnotationInserted" | "AnnotationRemoved" | "AnnotationPopupAction"
注釈
ids
source
イベントのソース。 ローカルまたはリモート (共同編集を使用) できます。
source: Word.EventSource | "Local" | "Remote";
プロパティ値
Word.EventSource | "Local" | "Remote"
注釈
Office Add-ins