Поделиться через


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 ]