ShowObjectAnchors Property
Applies To
View object.
Description
True if object anchors are displayed next to items that can be positioned in page layout view. Read/write Boolean.
Example
This example adds a frame around the selection, switches the active window to page layout view, and shows object anchors for framed objects.
Selection.Frames.Add(Range:=Selection.Range).LockAnchor = True
With ActiveWindow.View
.Type = wdPageView
.ShowObjectAnchors = True
End With