RecipientReference 属性

       

返回或设置“英文信函向导”创建的信件的参考行(如:“In reply to:”),String 类型,可读写。

expression.RecipientReference

expression   必需。该表达式返回一个 LetterContent 对象。

示例

本示例新建一个 LetterContent 对象,设置几个属性(包括参考行),然后用 RunLetterWizard 方法运行“英文信函向导”。

Set myContent = New LetterContent
With myContent
    .RecipientReference = "In reply to:"
    .Salutation ="Hello"
    .MailingInstructions = "Certified Mail"
End With
Documents.Add.RunLetterWizard LetterContent:=myContent