次の方法で共有


Office.InfobarClickedEventArgs interface

イベントを発生させた通知メッセージに関する基本的な詳細を提供します Office.EventType.InfobarClicked

注釈

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

// Adds an event handler for the InfobarClicked event.
Office.onReady(() => {
    document.addEventListener('DOMContentLoaded', () => {
        // Get a reference to the mailbox and use it to add an event handler.
        const mailbox = Office.context.mailbox;
        mailbox.addHandlerAsync(Office.EventType.InfobarClicked, infobarClickedHandler, (result) => {
            if (result.status === Office.AsyncResultStatus.Failed) {
                console.error(`Failed to add event handler: ${asyncResult.error.message}`);
                return;
            }

            console.log("Event handler added successfully.");
        });
    });
});

// Handles the InfobarClicked event.
function infobarClickedHandler(event) {
    console.log(`Event: ${event.type}`);
    const infobarDetails = event.infobarDetails;
    console.log(`Notification type: ${infobarDetails.infobarType}`);
    console.log(`Action type: ${infobarDetails.actionType}`);
}

プロパティ

infobarDetails

通知メッセージに関する追加の詳細を取得します。

type

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

プロパティの詳細

infobarDetails

通知メッセージに関する追加の詳細を取得します。

infobarDetails: InfobarDetails;

プロパティ値

注釈

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

type

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

type: "olkInfobarClicked";

プロパティ値

"olkInfobarClicked"

注釈

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