Share via


View Object

Publisher Developer Reference

Contains the view attributes (show all, field shading, table gridlines, and so on) for a window or pane.

Example

Use the ActiveView property to return the View object. The following example specifies the zoom setting.

Visual Basic for Applications
  Sub ZoomFitSelection()
    ActiveDocument.ActiveView.Zoom = pbZoomFitSelection
End Sub

The following examples zoom in and out, respectively, on the active view.

Visual Basic for Applications
  Sub ViewZoomIn()
    ActiveDocument.ActiveView.ZoomIn
End Sub

Sub ViewZoomOut() ActiveDocument.ActiveView.ZoomOut End Sub

The following example scrolls the active view to the specified shape.

Visual Basic for Applications
  Sub ScrollToShape()
    Dim shpOne As Shape
Set shpOne = ActiveDocument.Pages(1).Shapes(1)
ActiveDocument.ActiveView.ScrollShapeIntoView Shape:=shpOne

End Sub

See Also