Moves to the next Slide 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 bool MoveNextSlide()
Visual Basic (Declaration)
Public Function MoveNextSlide As Boolean

Return Value

A bool indicating whether the presentation is at the last slide.

Remarks

This method has the effect of setting the CurrentSlide to the next slide in the presentation's slide collection. The resulting CurrentSlide when calling this method may differ based on the presentation's current PresentationMode.

When PresentationMode is Editing or None, this method will set the CurrentSlide to the next slide in the collection even if its Visible property is false and if the slide is not in the presentation's SlideRange. If the current slide is the last slide in the presentation's slide collection, calling this method will set the CurrentSlide to null.

When PresentationMode is Presenting, this method will set the CurrentSlide to the next slide in the collection within the presentation's SlideRange, skipping slides whose Visible property is false. If the current slide is the last slide in the presentation's SlideRange, calling this method will end the presentation returning the presentation's PresentationMode to the mode it was in before the presentation started.

See Also