Gets or sets the title associated with this slide.
Namespace:
ESRI.ArcGISExplorer.MappingAssembly: ESRI.ArcGISExplorer (in ESRI.ArcGISExplorer.dll) Version: 2.0.0.1500 (2.0.0.1500)
Syntax
C# |
---|
public SlideTitle Title { get; set; } |
Visual Basic (Declaration) |
---|
Public Property Title As SlideTitle |
Field Value
The SlideTitle that is displayed as part of the slide.Remarks
A slide can have an associated SlideTitle that is displayed when the slide is set as the CurrentSlide.
You can use this property to modify a slide's SlideTitle, including its text, font, colors, etc.
Examples
The code below shows how you can create a new slide by cloning the Presentation's currently selected slide, modify its title text
and add it to the presentation.
CopyC#
// Create a new slide by cloning the presentation's CurrentSlide Slide newSlide = ESRI.ArcGISExplorer.Application.Application.Presentation.CurrentSlide.Clone(); // Update the new slide's slide title text and add it to the presentation's slide collection newSlide.Title.Text += " - Copy"; ESRI.ArcGISExplorer.Application.Application.Presentation.Slides.Add(newSlide);
CopyVB.NET
' Create a new slide by cloning the presentation's CurrentSlide Dim newSlide As Slide = ESRI.ArcGISExplorer.Application.Application.Presentation.CurrentSlide.Clone() ' Update the new slide's slide title text and add it to the presentation's slide collection newSlide.Title.Text += " -Copy" ESRI.ArcGISExplorer.Application.Application.Presentation.Slides.Add(newSlide)