HeadersFooters.Footer Property

PowerPoint Developer Reference

Returns a HeaderFooter object that represents the footer that appears at the bottom of a slide or in the lower-left corner of a notes page, handout, or outline. Read-only.

Syntax

expression.Footer

expression   A variable that represents a HeadersFooters object.

Return Value
HeaderFooter

Example

This example sets the text for the footer on the slide master in the active presentation and sets the footer, date and time, and slide number to appear on the title slide.

Visual Basic for Applications
  With Application.ActivePresentation.SlideMaster.HeadersFooters
    .Footer.Text = "Introduction"
    .DisplayOnTitleSlide = True
End With

See Also