HeadersFooters.Footer Property
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.
Namespace: Microsoft.Office.Interop.PowerPoint
Assembly: Microsoft.Office.Interop.PowerPoint (in Microsoft.Office.Interop.PowerPoint.dll)
Syntax
'Declaration
ReadOnly Property Footer As HeaderFooter
Get
'Usage
Dim instance As HeadersFooters
Dim value As HeaderFooter
value = instance.Footer
HeaderFooter Footer { get; }
Property Value
Type: Microsoft.Office.Interop.PowerPoint.HeaderFooter
HeaderFooter
Examples
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.
With Application.ActivePresentation.SlideMaster.HeadersFooters
.Footer.Text = "Introduction"
.DisplayOnTitleSlide = True
End With