Office.RecurrenceChangedEventArgs interface

Proporciona el objeto de periodicidad actualizado que generó el Office.EventType.RecurrenceChanged evento.

Comentarios

[ Conjunto de API: Buzón 1.7 ]

Ejemplos

// Adds an event handler for the RecurrenceChanged 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.RecurrenceChanged, recurrenceChangedHandler, (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 RecurrenceChanged event.
function recurrenceChangedHandler(event) {
    console.log(`Event: ${event.type}`);
    const recurrence = event.recurrence;

    // Perform operations based on the updated recurrence.
}

Propiedades

recurrence

Obtiene el objeto de periodicidad actualizado.

type

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

Detalles de las propiedades

recurrence

Obtiene el objeto de periodicidad actualizado.

recurrence: Recurrence;

Valor de propiedad

Comentarios

[ Conjunto de API: Buzón 1.7 ]

type

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

type: "olkRecurrenceChanged";

Valor de propiedad

"olkRecurrenceChanged"

Comentarios

[ Conjunto de API: Buzón 1.7 ]