DocumentBase.Background 属性

获取或设置一个 Shape,该值表示指定文档的背景图像。

命名空间:  Microsoft.Office.Tools.Word
程序集:  Microsoft.Office.Tools.Word.v4.0.Utilities(在 Microsoft.Office.Tools.Word.v4.0.Utilities.dll 中)

语法

声明
Public Property Background As Shape
public Shape Background { get; set; }

属性值

类型:Microsoft.Office.Interop.Word.Shape
一个 Shape,表示指定文档的背景图像。

备注

背景仅在 Web 版式视图中可见。

示例

下面的代码示例将文档的背景设置为图片。 此示例假定在 C 目录的根目录下有一个名为 Image.jpg 的文件。 若要使用此示例,请从文档级项目内的 ThisDocument 类中运行此示例。

    Private Sub DocumentBackground()
        Me.ActiveWindow.View.Type = Word.WdViewType.wdWebView
        Me.Background.Fill.UserPicture("C:\Image.jpg")
    End Sub

private void DocumentBackground()
{
    this.ActiveWindow.View.Type = Word.WdViewType.wdWebView;
    this.Background.Fill.UserPicture("C:\\Image.jpg");
}

.NET Framework 安全性

请参见

参考

DocumentBase 类

Microsoft.Office.Tools.Word 命名空间