Office.RibbonUpdaterData interface

Especifica los cambios en la cinta de opciones, como el estado habilitado o deshabilitado de un botón.

Comentarios

Conjunto de requisitos: RibbonAPI 1.1

Propiedades

tabs

Colección de pestañas cuyo estado se establece con la llamada de requestUpdate.

Detalles de las propiedades

tabs

Colección de pestañas cuyo estado se establece con la llamada de requestUpdate.

tabs: Tab[];

Valor de propiedad

Ejemplos

// Office.Tab objects are properties of ribbon updater objects that are passed to the 
// Office.ribbon.requestUpdate method. The following shows how to set the visibility of 
// a custom contextual tab.

async function showDataTab() {
    await Office.ribbon.requestUpdate({
        tabs: [
            {
                id: "CtxTab1",
                visible: true
            }
        ]});
}

// The following does the same thing in TypeScript.

const showDataTab = async () => {
    const myContextualTab: Office.Tab = { id: "CtxTab1", visible: true };
    const ribbonUpdater: Office.RibbonUpdaterData = { tabs: [ myContextualTab ] };
    await Office.ribbon.requestUpdate(ribbonUpdater);
}