Returns true if the slide is within the presentation's SlideRange.

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 IsSlideInRange(
	Slide slide
)
Visual Basic (Declaration)
Public Function IsSlideInRange ( _
	slide As Slide _
) As Boolean

Parameters

slide
Type: ESRI.ArcGISExplorer.Mapping..::.Slide

The slide to query the slide range.

Return Value

A boolean indicating whether the slide is within the SlideRange of the Presentation.

Remarks

A presentation contains a collection of slides. When running a presentation, the set of slides that are presented can be limited to a subset of the slides collection. The slide range represents the beginning and ending slide index of the slide collection that is presented. This method allow you to determine if a particular slide is within this slide range.

See Also