返回介绍

UpdateDocument 方法

发布于 2019-09-29 10:02:02 字数 1236 浏览 1042 评论 0 收藏 0

用当前的信封设置更新文档中的信封。

注意 如果在将信封添至文档前使用此属性将导致出错。

expression.UpdateDocument

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

示例

本示例将 Report.doc 中的信封设置为自定义信封尺寸(4.5 英寸 x 7.5 英寸)。

Sub UpdateEnvelope()

    On Error GoTo errhandler

    With Documents("Report.doc").Envelope
     .DefaultHeight = InchesToPoints(4.5)
     .DefaultWidth = InchesToPoints(7.5)
     .UpdateDocument
    End With

    Exit Sub

errhandler:

    If Err = 5852 Then _
        MsgBox "Report.doc doesn't include an envelope"

End Sub

本示例用预定义地址将一个信封添加到活动文档。然后将默认的信封条形码和 FIM-A 设置为 True,并更新活动文档中的信封。

Dim strAddress As String
Dim strReturn As String

strAddress = "Darlene Rudd" & vbCr & "1234 E. Main St." _
 & vbCr & "Our Town, WA  98004"
strReturn = "Patricia Reed" & vbCr & "N. 33rd St." _
 & vbCr & "Other Town, WA  98040"
ActiveDocument.Envelope.Insert _
    Address:=strAddress, ReturnAddress:=strReturn
With ActiveDocument.Envelope
 .DefaultPrintBarCode = True
 .DefaultPrintFIMA = True
 .UpdateDocument
End With

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文