SlideShowView Object
SlideShowWindow SlideShowView Multiple objects |
Represents the view in a slide show window.
Using the SlideShowView Object
Use the View property of the SlideShowWindow object to return the SlideShowView object. The following example sets slide show window one to display the first slide in the presentation.
SlideShowWindows(1).View.First
Use the Run method of the SlideShowSettings object to create a SlideShowWindow object, and then use the View property to return the SlideShowView object the window contains. The following example runs a slide show of the active presentation, changes the pointer to a pen, and sets the pen color for the slide show to red.
With ActivePresentation.SlideShowSettings.Run.View
.PointerColor.RGB = RGB(255, 0, 0)
.PointerType = ppSlideShowPointerPen
End With
Properties | AcceleratorsEnabled Property | AdvanceMode Property | Application Property | CurrentShowPosition Property | IsNamedShow Property | LastSlideViewed Property | Parent Property | PointerColor Property | PointerType Property | PresentationElapsedTime Property | Slide Property | SlideElapsedTime Property | SlideShowName Property | State Property | Zoom Property
Methods | DrawLine Method | EndNamedShow Method | EraseDrawing Method | Exit Method | First Method | GotoNamedShow Method | GotoSlide Method | Last Method | Next Method | Previous Method | ResetSlideTime Method
Parent Objects | SlideShowWindow Object
Child Objects | ColorFormat Object | Slide Object