Office.RecipientsChangedEventArgs interface
イベントが発生したときに、受信者フィールドの変更状態を Office.EventType.RecipientsChanged
提供します。
注釈
例
// Handles the OnMessageRecipientsChanged event.
function onMessageRecipientsChangedHandler(event) {
console.log(`Event: ${event.type}`);
const recipientFields = event.changedRecipientFields;
console.log(getChangedRecipientFields(recipientFields));
}
// Gets the recipient fields that have changed.
function getChangedRecipientFields(recipientFields) {
return Object.keys(recipientFields).filter((key) => recipientFields[key] === true);
}
プロパティ
changed |
受信者フィールドの変更状態を示す オブジェクトを取得します。 |
type | イベントの種類を取得します。 詳細については、「 Office.EventType」を参照してください。 |
プロパティの詳細
changedRecipientFields
受信者フィールドの変更状態を示す オブジェクトを取得します。
changedRecipientFields: RecipientsChangedFields;
プロパティ値
注釈
type
イベントの種類を取得します。 詳細については、「 Office.EventType」を参照してください。
type: "olkRecipientsChanged";
プロパティ値
"olkRecipientsChanged"
注釈
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Office Add-ins