Share via


ShowPicturePlaceHolders Property

ShowPicturePlaceHolders Property
This content is no longer actively maintained. It is provided as is, for anyone who may still be using these technologies, with no warranties or claims of accuracy with regard to the most recent product version or service release.

True if blank boxes are displayed as placeholders for pictures. Read/write Boolean.

expression.ShowPicturePlaceHolders

expression   Required. An expression that returns a View object.

Example

This example inserts a picture in the active document and displays picture placeholders in the active window.

  Selection.Collapse Direction:=wdCollapseStart
ActiveDocument.InlineShapes.AddPicture Range:=Selection.Range, _
    FileName:="C:\Windows\Bubbles.bmp"
ActiveDocument.ActiveWindow.View.ShowPicturePlaceHolders = True