Compartir a través de


Office.EnhancedLocationsChangedEventArgs interface

Proporciona las ubicaciones mejoradas actuales cuando se genera el Office.EventType.EnhancedLocationsChanged evento.

Comentarios

[ Conjunto de API: Buzón 1.8 ]

Ejemplos

// Adds an event handler for the EnhancedLocationsChanged 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.EnhancedLocationsChanged, enhancedLocationsChangedHandler, (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 EnhancedLocationsChanged event.
function enhancedLocationsChangedHandler(event) {
    console.log(`Event: ${event.type}`);
    const enhancedLocations = event.enhancedLocations;
    enhancedLocations.forEach((location) => {
        console.log(`Display name: ${location.displayName}`);
        const locationType = location.locationIdentifier.type;
        console.log(`Type: ${locationType}`);
        if (locationType === Office.MailboxEnums.LocationType.Room) {
            console.log(`Email address: ${location.emailAddress}`);
        }
    });
}

Propiedades

enhancedLocations

Obtiene el conjunto de ubicaciones mejoradas.

type

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

Detalles de las propiedades

enhancedLocations

Obtiene el conjunto de ubicaciones mejoradas.

enhancedLocations: LocationDetails[];

Valor de propiedad

Comentarios

[ Conjunto de API: Buzón 1.8 ]

type

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

type: "olkEnhancedLocationsChanged";

Valor de propiedad

"olkEnhancedLocationsChanged"

Comentarios

[ Conjunto de API: Buzón 1.8 ]