Title Property
Applies To
Shapes collection object.
Description
Returns a Shape object that represents the slide title. Read-only.
Remarks
You can also use the Item method of the Shapes or Placeholders collection to return the slide title.
Example
This example sets the title text on slide one in myDocument.
Set myDocument = ActivePresentation.Slides(1)
myDocument.Shapes.Title.TextFrame.TextRange.Text = "Welcome!"