Gets the collection of slides in the presentation.

Namespace:  ESRI.ArcGISExplorer.Application

Assembly:  ESRI.ArcGISExplorer.Application (in ESRI.ArcGISExplorer.Application.dll) Version: 2.0.0.1500 (2.0.0.1500)

Syntax

C#
public SlideCollection Slides { get; }
Visual Basic (Declaration)
Public ReadOnly Property Slides As SlideCollection

Field Value

A SlideCollection of slides in the presentation.

Remarks

The presentation contains a collection of slides. The presentation's SlideCollection includes all the slides in the presentation including those that are not within the SlideRange and slides whose Visibility is false.

Examples

The code below demonstrates getting the collection of slides from the presentation and reporting the count.
CopyC#
SlideCollection slides = ESRI.ArcGISExplorer.Application.Application.Presentation.Slides;
System.Diagnostics.Debug.WriteLine("The presentation has " + slides.Count.ToString() + " slides.");
CopyVB.NET
Dim slides As SlideCollection = ESRI.ArcGISExplorer.Application.Application.Presentation.Slides
System.Diagnostics.Debug.WriteLine("The presentation has " & slides.Count & " slides.")

See Also