Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Returns or sets the date for a letter created by the Letter Wizard. Read/write String.
Syntax
expression. DateFormat
expression A variable that represents a 'LetterContent' object.
Example
This example displays the date from the letter that appears in the active document.
MsgBox ActiveDocument.GetLetterContent.DateFormat
This example creates a new LetterContent object, sets the date line to the current date, and then runs the Letter Wizard by using the RunLetterWizard method.
Dim lcNew As LetterContent
Set lcNew = New LetterContent
lcNew.DateFormat = Date$
ActiveDocument.RunLetterWizard LetterContent:=lcNew
See also
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.