|
ZoomChange (Event)
This event occurs when the current zoomed view is changed and returns with 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
|
Is the object that raises the event
|
e.xMin
|
Single
|
Is the x coordinate of the bottom left extend of the window viewport
|
e.yMin
|
Single
|
Is the y coordinate of the bottom left extend of the window viewport
|
e.xMax
|
Single
|
Is the x coordinate of the top right extend of the window viewport
|
e.yMax
|
Single
|
Is the y coordinate of the top right extend of the window viewport
|
Example
|