PowerPoint.InsertSlideFormatting enum
Gibt die Formatierungsoptionen für das Einfügen von Folien an.
Hinweise
[ API-Satz: PowerPointApi 1.2 ]
Beispiele
// 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: PowerPoint.Presentation = context.presentation;
const selected: PowerPoint.Slide = 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();
});
Felder
keepSourceFormatting = "KeepSourceFormatting" | Kopieren Sie das Quelldesign in die Zielpräsentation, und verwenden Sie dieses Design. |
useDestinationTheme = "UseDestinationTheme" | Verwenden Sie das vorhandene Design in der Zielpräsentation. |
Zusammenarbeit auf GitHub
Die Quelle für diesen Inhalt finden Sie auf GitHub, wo Sie auch Issues und Pull Requests erstellen und überprüfen können. Weitere Informationen finden Sie in unserem Leitfaden für Mitwirkende.
Office Add-ins