次の方法で共有


Office.AppointmentTimeChangedEventArgs interface

イベントを発生させた予定の現在の日付と時刻を提供します Office.EventType.AppointmentTimeChanged

注釈

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

// Adds an event handler for the AppointmentTimeChanged 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.AppointmentTimeChanged, appointmentTimeChangedHandler, (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 AppointmentTimeChanged event.
function appointmentTimeChangedHandler(event) {
    console.log(`Event: ${event.type}`);
    console.log(`Start time: ${event.start}`);
    console.log(`End time: ${event.end}`);
}

プロパティ

end

予定の終了日時を取得します。

start

予定の開始日と時刻を取得します。

type

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

プロパティの詳細

end

予定の終了日時を取得します。

end: Date;

プロパティ値

Date

注釈

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

start

予定の開始日と時刻を取得します。

start: Date;

プロパティ値

Date

注釈

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

type

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

type: "olkAppointmentTimeChanged";

プロパティ値

"olkAppointmentTimeChanged"

注釈

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