Notes
L’accès à cette page nécessite une autorisation. Vous pouvez essayer de vous connecter ou de modifier des répertoires.
L’accès à cette page nécessite une autorisation. Vous pouvez essayer de modifier des répertoires.
Returns or sets the reference line (for example, "In reply to:") for a letter created by the Letter Wizard. Read/write String.
Syntax
expression .RecipientReference
expression An expression that returns a LetterContent object.
Example
This example creates a new LetterContent object, sets several properties (including the reference line), and then runs the Letter Wizard by using the RunLetterWizard method.
Set myContent = New LetterContent
With myContent
.RecipientReference = "In reply to:"
.Salutation ="Hello"
.MailingInstructions = "Certified Mail"
End With
Documents.Add.RunLetterWizard LetterContent:=myContent