ZoomChange
EventZoomChange (Event)
This event occurs when the current zoomed view is changed and returns the coordinates of the new window viewport
Syntax:
Private Sub object_ZoomChange(Sender As System.Object, e As ZoomChangeEventArgs)
The ZoomChange event syntax has the following parts:
Argument |
Data Type |
Description |
Sender |
System.Object |
The object that raises the event |
e.xMin |
Single |
The x coordinate of the bottom-left extent of the window viewport |
e.yMin |
Single |
The y coordinate of the bottom-left extent of the window viewport |
e.xMax |
Single |
The x coordinate of the top-right extent of the window viewport |
e.yMax |
Single |
The y coordinate of the top-right extent of the window viewport |