MailingInstructions 属性

       

为“英文信函向导”所建信件返回或设置邮件说明性文本(如:“Certified Mail”)。String 类型,可读写。

expression.MailingInstructions

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

示例

本示例在活动文档中检索“英文信函向导”元素,更改邮件说明性文本,然后用 SetLetterContent 方法更新活动文档,以便反映这些更改。

Set myLetterContent = ActiveDocument.GetLetterContent
myLetterContent.MailingInstructions = "Air Mail"
ActiveDocument.SetLetterContent LetterContent:=myLetterContent

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

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