SlideShowWindow.View Property

Returns a SlideShowView object. Read-only.

Namespace:  Microsoft.Office.Interop.PowerPoint
Assembly:  Microsoft.Office.Interop.PowerPoint (in Microsoft.Office.Interop.PowerPoint.dll)

Syntax

'Declaration
ReadOnly Property View As SlideShowView
    Get
'Usage
Dim instance As SlideShowWindow
Dim value As SlideShowView

value = instance.View
SlideShowView View { get; }

Property Value

Type: Microsoft.Office.Interop.PowerPoint.SlideShowView
SlideShowView

Examples

This example uses the View property to exit the current slide show, sets the view in the active window to slide view, and then displays slide three.

Application.SlideShowWindows(1).View.Exit

With Application.ActiveWindow

    .ViewType = ppViewSlide

    .View.GotoSlide 3

End With

See Also

Reference

SlideShowWindow Interface

SlideShowWindow Members

Microsoft.Office.Interop.PowerPoint Namespace