Application.OpenThemeFile-Methode (PowerPoint)
Öffnet die angegebene Designdatei (*thmx).
Syntax
Ausdruck. OpenThemeFile
(themeFileName)
expression Eine Variable, die ein Application-Objekt darstellt.
Parameter
Name | Erforderlich/Optional | Datentyp | Beschreibung |
---|---|---|---|
themeFileName | Erforderlich | String | Der Pfad der zu öffnenden Designdatei (*.thmx). |
themeFileName | Erforderlich | String |
Rückgabewert
Beispiel
In diesem Beispiel wird eine Designdatei geöffnet, die ID der dritten Variante im Design abgerufen und auf die erste Folie in der Präsentation angewendet.
Sub ChangeThemeVariant()
Dim name As String
Dim path As String
Dim variantID As String
' Get the name of the active theme family.
name = ActivePresentation.TemplateName
' You need access to the Theme Family in order to access the variants.
path = "C:\Program Files (x86)\Microsoft Office\Document Themes 15\" & _
ActivePresentation.TemplateName & ".thmx"
' Get the variant ID of the third Variant
' and apply that variant to the presentation.
variantID = PowerPoint.Application.OpenThemeFile(path).ThemeVariants(3).Id
ActivePresentation.Slides(1).ApplyTemplate2 path, variantID
End Sub
Support und Feedback
Haben Sie Fragen oder Feedback zu Office VBA oder zu dieser Dokumentation? Unter Office VBA-Support und Feedback finden Sie Hilfestellung zu den Möglichkeiten, wie Sie Support erhalten und Feedback abgeben können.