Office.OfficeThemeChangedEventArgs interface

Fornece o tema atualizado do Office que levantou o Office.EventType.OfficeThemeChanged evento.

Comentários

[ Conjunto de API: Caixa de Correio 1.14 ]

Exemplos

// Adds an event handler for the OfficeThemeChanged 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.OfficeThemeChanged, officeThemeChangedHandler, (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 OfficeThemeChanged event.
function officeThemeChangedHandler(event) {
    console.log(`Event: ${event.type}`);
    const currentTheme = event.officeTheme;
    // Perform operations based on the current theme.
}

Propriedades

officeTheme

Obtém o tema do Office atualizado.

type

Obtém o tipo do evento. Para obter detalhes, consulte Office.EventType.

Detalhes da propriedade

officeTheme

Obtém o tema do Office atualizado.

officeTheme: Office.OfficeTheme;

Valor da propriedade

Comentários

[ Conjunto de API: Caixa de Correio 1.14 ]

type

Obtém o tipo do evento. Para obter detalhes, consulte Office.EventType.

type: "officeThemeChanged";

Valor da propriedade

"officeThemeChanged"

Comentários

[ Conjunto de API: Caixa de Correio 1.14 ]