Gets or sets the thumbnail image associated with this slide.

Namespace:  ESRI.ArcGISExplorer.Mapping

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

Syntax

C#
public Bitmap Thumbnail { get; set; }
Visual Basic (Declaration)
Public Property Thumbnail As Bitmap

Field Value

A System.Drawing.Bitmap of the slide's thumbnail.

Remarks

Each slide in a presentation includes a thumbnail that is displayed in the application's Slides Window. The thumbnail is automatically captured when the slide is created using the CaptureSlide()()() method on Presentation. You can use this property to get the thumbnail as a System.Drawing.Bitmap, or replace the thumbnail with your own image.

Note that when you change the property of a slide, such as its Viewpoint, Basemap, etc, the slide's thumbnail will not be updated automatically. The thumbnail is only captured automatically when creating a new slide with CaptureSlide()()().

See Also