PowerPoint) 应用程序对象 (

代表整个 Microsoft PowerPoint 应用程序。

注解

Application 对象包括:

  • 应用程序范围内的设置和选项(例如,当前打印机的名称)。

  • 用于返回顶层对象的属性,例如 ActivePresentationWindows

编写要在 PowerPoint 中运行的代码时,Application 对象的下列属性可以在没有对象限定符的情况下使用:ActivePresentationActiveWindowAddInsPresentationsSlideShowWindowsWindows

例如,可以编写 ,而不是编写 Application.ActiveWindow.Height = 200ActiveWindow.Height = 200

示例

Application 属性可用于返回 Application 对象。 以下示例返回程序文件的路径。

Dim MyPath As String

MyPath = Application.Path

以下示例在其他应用程序中创建一个 PowerPoint Application 对象,并启动 PowerPoint(如果尚未运行),然后打开一个名为“Ex_a2a.ppt”的现有演示文稿。

Set ppt = New PowerPoint.Application

ppt.Visible = True

ppt.Presentations.Open "c:\My Documents\ex_a2a.ppt"

事件

名称
AfterDragDropOnSlide
AfterNewPresentation
AfterPresentationOpen
AfterShapeSizeChange
ColorSchemeChanged
NewPresentation
PresentationBeforeClose
PresentationBeforeSave
PresentationClose
PresentationCloseFinal
PresentationNewSlide
PresentationOpen
PresentationPrint
PresentationSave
PresentationSync
ProtectedViewWindowActivate
ProtectedViewWindowBeforeClose
ProtectedViewWindowBeforeEdit
ProtectedViewWindowDeactivate
ProtectedViewWindowOpen
SlideSelectionChanged
SlideShowBegin
SlideShowEnd
SlideShowNextBuild
SlideShowNextClick
SlideShowNextSlide
SlideShowOnNext
SlideShowOnPrevious
WindowActivate
WindowBeforeDoubleClick
WindowBeforeRightClick
WindowDeactivate
WindowSelectionChange

方法

名称
Activate
Help
OpenThemeFile
Quit
Run
StartNewUndoEntry

属性

名称
Active
ActiveEncryptionSession
ActivePresentation
ActivePrinter
ActiveProtectedViewWindow
ActiveWindow
AddIns
Assistance
AutoCorrect
AutomationSecurity
内部版本
Caption
ChartDataPointTrack
COMAddIns
CommandBars
Creator
DisplayAlerts
DisplayDocumentInformationPanel
DisplayGridLines
DisplayGuides
FeatureInstall
FileConverters
FileDialog
FileValidation
Height
IsSandboxed
LanguageSettings
Left
名称
NewPresentation
OperatingSystem
选项
Path
Presentations
ProductCode
ProtectedViewWindows
SensitivityLabelPolicy
ShowStartupDialog
ShowWindowsInTaskbar
SlideShowWindows
SmartArtColors
SmartArtLayouts
SmartArtQuickStyles
Top
VBE
Version
Visible
Width
Windows
WindowState

另请参阅

PowerPoint 对象模型引用

支持和反馈

有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。