HeadersFooters.DisplayOnTitleSlide Property
Determines whether the footer, date and time, and slide number appear on the title slide. Applies to slide masters. Read/write.
Namespace: Microsoft.Office.Interop.PowerPoint
Assembly: Microsoft.Office.Interop.PowerPoint (in Microsoft.Office.Interop.PowerPoint.dll)
Syntax
'Declaration
Property DisplayOnTitleSlide As MsoTriState
Get
Set
'Usage
Dim instance As HeadersFooters
Dim value As MsoTriState
value = instance.DisplayOnTitleSlide
instance.DisplayOnTitleSlide = value
MsoTriState DisplayOnTitleSlide { get; set; }
Property Value
Type: Microsoft.Office.Core.MsoTriState
MsoTriState
Remarks
The value of the DisplayOnTitleSlide property can be one of these MsoTriState constants.
Constant |
Description |
---|---|
msoFalse |
The footer, date and time, and slide number appears on all slides except the title slide. |
msoTrue |
The footer, date and time, and slide number appear on the title slide. |
Examples
This example sets the footer, date and time, and slide number to not appear on the title slide.
Application.ActivePresentation.SlideMaster.HeadersFooters.DisplayOnTitleSlide= msoFalse