Word) (Document.Background 属性
返回一个 Shape 对象,该对象表示指定文档的背景图像。 此为只读属性。
语法
表达式。背景
表达 一个代表 Document 对象的变量。
备注
背景仅在 Web 布局视图中可见。
示例
本示例将活动窗口的 Web 版式视图的背景色设置为浅灰色。
ActiveDocument.ActiveWindow.View.Type = wdWebView
With ActiveDocument.Background.Fill
.Visible = True
.ForeColor.RGB = RGB(192, 192, 192)
End With
本示例将 Web 版式视图的背景位图图像设置为 Bubbles.bmp。
ActiveDocument.ActiveWindow.View.Type = wdWebView
ActiveDocument.Background.Fill.UserPicture _
PictureFile:="C:\Windows\Bubbles.bmp"
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。