Gets or sets the text that's displayed in the slide title.

Namespace:  ESRI.ArcGISExplorer.Mapping
Assembly:  ESRI.ArcGISExplorer (in ESRI.ArcGISExplorer.dll) Version: 2.0.0.900 (2.0.0.900)

Syntax

C#
public string Text { get; set; }
Visual Basic (Declaration)
Public Property Text As String

Field Value

A string that represents the text to display in the slide title.

Remarks

The text displayed in the slide title is formatted based on the Font, and TextColor properties.

Examples

The code below demonstrates how you can set the presentation's slide title before capturing a new slide and adding it to the presentation.
CopyC#
// Create a new SlideTitle and set properties for its appearance
SlideTitle slideTitle = new SlideTitle()
{
  Text = "My Slide Title",
  Font = new System.Drawing.Font("Arial", 50, FontStyle.Bold),
  TextColor = Color.Yellow,
  BackColor = Color.Black,
  OutlineColor = Color.Orange,
  Outline = 4,
  Transparency = 40,
  DisplayPosition = DisplayPosition.TopRight
};

// Set the Presentation's SlideTitle to be the new slide title
ESRI.ArcGISExplorer.Application.Application.Presentation.SlideTitle = slideTitle;

// Capture a new slide and add it to the Presentation's slide collection
Slide newSlide = ESRI.ArcGISExplorer.Application.Application.Presentation.CaptureSlide();
ESRI.ArcGISExplorer.Application.Application.Presentation.Slides.Add(newSlide);
CopyVB.NET
' Create a new SlideTitle and set properties for its appearance
Dim slideTitle As New SlideTitle
With slideTitle
  .Text = "My Slide Title"
  .Font = New System.Drawing.Font("Arial", 50, FontStyle.Bold)
  .TextColor = Color.Yellow
  .BackColor = Color.Black
  .OutlineColor = Color.Orange
  .Outline = 4
  .Transparency = 40
  .DisplayPosition = DisplayPosition.TopRight
End With

' Set the Presentation's SlideTitle to be the new slide title
ESRI.ArcGISExplorer.Application.Application.Presentation.SlideTitle = slideTitle

' Capture a new slide and add it to the Presentation's slide collection
Dim newSlide As Slide = ESRI.ArcGISExplorer.Application.Application.Presentation.CaptureSlide()
ESRI.ArcGISExplorer.Application.Application.Presentation.Slides.Add(newSlide)

See Also

Relate Topics:
  BackColor Property
  DisplayPosition Property
  Font Property
  Outline Property
  OutlineColor Property
  TextColor Property
  Transparency Property
Created by Atop CHM to web converter,© 2009 all right reserved.