Compartir a través de


PowerPoint.InsertSlideFormatting enum

Especifica las opciones de formato para cuando se insertan diapositivas.

Comentarios

[ Conjunto de API: PowerPointApi 1.2 ]

Ejemplos

// Link to full sample: https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/powerpoint/slide-management/insert-slides.yaml

await PowerPoint.run(async function(context) {
    // Get the ID of the first selected slide.
    const presentation = context.presentation;
    const selected = presentation.getSelectedSlides().getItemAt(0);
    selected.load("id");
    await context.sync();

    // Insert the other presentation after the selected slide.
    const insertOptions: PowerPoint.InsertSlideOptions = {
        formatting: PowerPoint.InsertSlideFormatting.useDestinationTheme,
        targetSlideId: selected.id
    };
    presentation.insertSlidesFromBase64(chosenFileBase64, insertOptions);
    await context.sync();
});

Campos

keepSourceFormatting = "KeepSourceFormatting"

Copie el tema de origen en la presentación de destino y use ese tema.

useDestinationTheme = "UseDestinationTheme"

Use el tema existente en la presentación de destino.