HeaderFooter.Format Property (PowerPoint)
Returns or sets the format for the automatically updated date and time. Read/write.
Syntax
expression .Format
expression A variable that represents a ThreeDFormat object.
Return Value
PpDateTimeFormat
Remarks
The Format property applies only to HeaderFooter objects that represent a date and time (returned from the HeadersFooters collection by the DateAndTime property).
Make sure that the date and time are set to be updated automatically (not displayed as fixed text) by setting the UseFormat property to True.
The Format property value can be one of these PpDateTimeFormat constants.
ppDateTimeddddMMMMddyyyy |
ppDateTimedMMMMyyyy |
ppDateTimedMMMyy |
ppDateTimeFormatMixed |
ppDateTimeHmm |
ppDateTimehmmAMPM |
ppDateTimeHmmss |
ppDateTimehmmssAMPM |
ppDateTimeMdyy |
ppDateTimeMMddyyHmm |
ppDateTimeMMddyyhmmAMPM |
ppDateTimeMMMMdyyyy |
ppDateTimeMMMMyy |
ppDateTimeMMyy |
Example
This example sets the date and time for the slide master of the active presentation to be updated automatically and then it sets the date and time format to show hours, minutes, and seconds.
Set myPres = Application.ActivePresentation
With myPres.SlideMaster.HeadersFooters.DateAndTime
.UseFormat = True
.Format = ppDateTimeHmmss
End With