Word.ParagraphChangedEventArgs interface
paragraphChanged イベントを発生させた段落に関する情報を提供します。
注釈
例
// Link to full sample: https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/25-paragraph/onchanged-event.yaml
// Registers the onParagraphChanged event handler on the document.
await Word.run(async (context) => {
eventContext = context.document.onParagraphChanged.add(paragraphChanged);
await context.sync();
console.log("Added event handler for when content is changed in paragraphs.");
});
...
async function paragraphChanged(event: Word.ParagraphChangedEventArgs) {
await Word.run(async (context) => {
console.log(`${event.type} event detected. IDs of paragraphs where content was changed:`, event.uniqueLocalIds);
});
}
プロパティ
source | イベントのソース。 ローカルまたはリモート (共同編集を使用) できます。 |
type | イベントの種類。 「Word」を参照してください。詳細については、EventType を参照してください。 |
unique |
関連する段落の一意の ID を取得します。 ID は標準の 8-4-4-4-12 GUID 形式で中かっこを使用せず、セッションと共同編集者によって異なります。 |
プロパティの詳細
source
イベントのソース。 ローカルまたはリモート (共同編集を使用) できます。
source: Word.EventSource | "Local" | "Remote";
プロパティ値
Word.EventSource | "Local" | "Remote"
注釈
type
イベントの種類。 「Word」を参照してください。詳細については、EventType を参照してください。
type: 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"
注釈
uniqueLocalIds
関連する段落の一意の ID を取得します。 ID は標準の 8-4-4-4-12 GUID 形式で中かっこを使用せず、セッションと共同編集者によって異なります。
uniqueLocalIds: string[];
プロパティ値
string[]
注釈
Office Add-ins