Skip to content

Latest commit

 

History

History
61 lines (36 loc) · 1.19 KB

Word.Document.Background.md

File metadata and controls

61 lines (36 loc) · 1.19 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Document.Background property (Word)
vbawd10.chm158007365
vbawd10.chm158007365
Word.Document.Background
0425d9e6-1c26-3df7-bac6-6bc314a3ca47
06/08/2017
medium

Document.Background property (Word)

Returns a Shape object that represents the background image for the specified document. Read-only.

Syntax

expression.Background

expression A variable that represents a Document object.

Remarks

Backgrounds are visible only in web layout view.

Example

This example sets the background color for Web layout view to light gray for the active window.

ActiveDocument.ActiveWindow.View.Type = wdWebView 
With ActiveDocument.Background.Fill 
 .Visible = True 
 .ForeColor.RGB = RGB(192, 192, 192) 
End With

This example sets the background bitmap image of Web layout view to Bubbles.bmp.

ActiveDocument.ActiveWindow.View.Type = wdWebView 
ActiveDocument.Background.Fill.UserPicture _ 
 PictureFile:="C:\Windows\Bubbles.bmp"

See also

Document Object

[!includeSupport and feedback]