title | keywords | f1_keywords | api_name | ms.assetid | ms.date | ms.localizationpriority | ||
---|---|---|---|---|---|---|---|---|
Application.SlideShowBegin event (PowerPoint) |
vbapp10.chm621011 |
|
|
f70ca9cb-11a7-2a81-19bb-36e0b0ca0b97 |
06/08/2017 |
medium |
Occurs when you start a slide show.
expression. SlideShowBegin
(Wn)
expression A variable that represents an Application object.
Name | Required/Optional | Data type | Description |
---|---|---|---|
Wn | Required | SlideShowWindow | The slide show window initialized prior to this event. |
Microsoft PowerPoint creates the slide show window and passes it to this event. If one slide show branches to another, the SlideShowBegin event does not occur again when the second slide show begins.
For information about using events with the Application object, see How to: Use Events with the Application Object.
This example adjusts the size and position of the slide show window and then reactivates it.
Private Sub App_SlideShowBegin(ByVal Wn As SlideShowWindow)
With Wn
.Height = 325
.Width = 400
.Left = 100
.Activate
End With
End Sub
[!includeSupport and feedback]