Share via


View Object [Publisher 2003 VBA Language Reference]

Document
View
Page

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

Using the View Object

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

Sub ZoomFitSelection()
    ActiveDocument.ActiveView.Zoom = pbZoomFitSelection
End Sub

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

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.

Sub ScrollToShape()
    Dim shpOne As Shape

    Set shpOne = ActiveDocument.Pages(1).Shapes(1)
    ActiveDocument.ActiveView.ScrollShapeIntoView Shape:=shpOne
End Sub

Properties | ActivePage Property | Application Property | Parent Property | Zoom Property

Methods | ScrollShapeIntoView Method | ZoomIn Method | ZoomOut Method

Parent Objects | Document Object

Child Objects | Page Object