次の方法で共有


Office.RecipientsChangedEventArgs interface

イベントが発生したときに、受信者フィールドの変更状態を Office.EventType.RecipientsChanged 提供します。

注釈

[ API セット: メールボックス 1.7 ]

// 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);
}

プロパティ

changedRecipientFields

受信者フィールドの変更状態を示す オブジェクトを取得します。

type

イベントの種類を取得します。 詳細については、「 Office.EventType」を参照してください。

プロパティの詳細

changedRecipientFields

受信者フィールドの変更状態を示す オブジェクトを取得します。

changedRecipientFields: RecipientsChangedFields;

プロパティ値

注釈

[ API セット: メールボックス 1.7 ]

type

イベントの種類を取得します。 詳細については、「 Office.EventType」を参照してください。

type: "olkRecipientsChanged";

プロパティ値

"olkRecipientsChanged"

注釈

[ API セット: メールボックス 1.7 ]