PowerPoint) (主题对象
表示主题 (颜色、字体和效果) 集合。
示例
下面的代码示例获取对当前活动主题的引用,然后循环访问主题中的每个主题变体。
Sub IterateThemeVariants()
Dim pptTheme As Theme
Dim pptThemeVariants As ThemeVariants
Dim pptThemeVariant As ThemeVariant
Dim path As String
' Get a reference to the currently active theme.
path = "C:\Program Files (x86)\Microsoft Office\Document Themes 15\" & _
ActivePresentation.TemplateName & ".thmx"
Set pptTheme = Application.OpenThemeFile(path)
' Get a reference to all of the variations in the theme.
Set pptThemeVariants = pptTheme.ThemeVariants
' Iterate over each variation of the theme and print
' its ID.
For Each pptThemeVariant In pptThemeVariants
Debug.Print "Variation id: " & pptThemeVariant.Id
Next pptThemeVariant
End Sub
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。