Office.AppointmentTimeChangedEventArgs interface

Proporciona las fechas y horas actuales de la cita que generó el Office.EventType.AppointmentTimeChanged evento.

Comentarios

[ Conjunto de API: Buzón 1.7 ]

Ejemplos

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

Propiedades

end

Obtiene la fecha y hora de finalización de la cita.

start

Obtiene la fecha y hora de inicio de la cita.

type

Obtiene el tipo del evento. Para obtener más información, consulte Office.EventType.

Detalles de las propiedades

end

Obtiene la fecha y hora de finalización de la cita.

end: Date;

Valor de propiedad

Date

Comentarios

[ Conjunto de API: Buzón 1.7 ]

start

Obtiene la fecha y hora de inicio de la cita.

start: Date;

Valor de propiedad

Date

Comentarios

[ Conjunto de API: Buzón 1.7 ]

type

Obtiene el tipo del evento. Para obtener más información, consulte Office.EventType.

type: "olkAppointmentTimeChanged";

Valor de propiedad

"olkAppointmentTimeChanged"

Comentarios

[ Conjunto de API: Buzón 1.7 ]