ArcGIS Explorer Component Help |
Presentation..::.PresentationMode Property |
Presentation Class Example See Also |
Gets or sets a value indicating if currently in presentation mode. Can be used to start the presentation.
Namespace:
ESRI.ArcGISExplorer.ApplicationAssembly: ESRI.ArcGISExplorer.Application (in ESRI.ArcGISExplorer.Application.dll) Version: 2.0.0.1500 (2.0.0.1500)
Syntax
C# |
---|
public PresentationMode PresentationMode { get; set; } |
Visual Basic (Declaration) |
---|
Public Property PresentationMode As PresentationMode |
Field Value
One of the PresentationMode values which defines the presentation mode of the application.Remarks
There are three distinct modes the presentation can be in, defined by PresentationMode.
Changing the presentation mode will display the presentation editing tools (Editing), put the application in full-screen presentation mode (Presenting), or hide the presentation editing tools (None).
Examples
The following demonstrates how you can start a full-screen presentation by setting the presentation mode to Presenting.
CopyC#
ESRI.ArcGISExplorer.Application.Application.Presentation.PresentationMode = PresentationMode.Presenting;
CopyVB.NET
ESRI.ArcGISExplorer.Application.Application.Presentation.PresentationMode = PresentationMode.Presenting