Performs a zoom operation about a given coordinate. If the factor is negative, a zoom in occurs - if positive, a zoom out occurs. Factor is a percentage of current extents.


Namespace: MapWinView
Assembly: MapWinView (in MapWinView.dll)

Syntax

Visual Basic (Declaration)
Private Sub DoZoomOperation( _ 
   ByVal factor As Single,  _ 
   ByVal AboutX As Integer,  _ 
   ByVal AboutY As Integer _ 
)
C#
private void DoZoomOperation(
   float factor,
   int AboutX,
   int AboutY
)
C++
private:
 void DoZoomOperation(
   float factor,
   int AboutX,
   int AboutY
) sealed 
J#
private void DoZoomOperation(
   float factor,
   int AboutX,
   int AboutY
)
JScript
private  function DoZoomOperation(
   factor : float,
   AboutX : int,
   AboutY : int
)

See Also