ZoomOut method

Zooms the map view farther out; similar to clicking Zoom Out on the Navigation toolbar.

Applies to

Objects:  Map

Syntax

object.ZoomOut

Parameters

Part Description
object Required. An expression that returns a Map object.

Example

    Sub ZoomOutFromMap()

  Dim objApp As New MapPoint.Application
  'Set up the application   objApp.Visible = True   objApp.UserControl = True
  'Zoom out from the map   objApp.ActiveMap.ZoomOut
  End Sub