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


Office.EnhancedLocationsChangedEventArgs interface

Предоставляет текущие расширенные расположения при возникновении Office.EventType.EnhancedLocationsChanged события.

Комментарии

[ Набор API: Почтовый ящик 1.8 ]

Примеры

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

Свойства

enhancedLocations

Возвращает набор расширенных расположений.

type

Получает тип события. Дополнительные сведения см. в статье Office.EventType.

Сведения о свойстве

enhancedLocations

Возвращает набор расширенных расположений.

enhancedLocations: LocationDetails[];

Значение свойства

Комментарии

[ Набор API: Почтовый ящик 1.8 ]

type

Получает тип события. Дополнительные сведения см. в статье Office.EventType.

type: "olkEnhancedLocationsChanged";

Значение свойства

"olkEnhancedLocationsChanged"

Комментарии

[ Набор API: Почтовый ящик 1.8 ]