Document.Background (Word)
Returns a Shape object that represents the background image for the specified document.
Backgrounds are visible only in web layout view.
ActiveDocument.ActiveWindow.View.Type = wdWebView
With ActiveDocument.Background.Fill
.Visible = True
.ForeColor.RGB = RGB(192, 192, 192)
End With