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 return address for a letter created with the Letter Wizard. Read/write String.
Syntax
expression. ReturnAddress
expression Required. A variable that represents a 'LetterContent' object.
Example
This example creates a new LetterContent object, sets the return address and several other properties, and then runs the Letter Wizard by using the RunLetterWizard method.
Dim oLC as New LetterContent
With oLC
.LetterStyle = wdFullBlock
.Salutation ="Hello"
.SalutationType = wdSalutationOther
.ReturnAddress = Application.UserAddress
End With
Documents.Add.RunLetterWizard LetterContent:=oLC
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.