ActiveReports.Viewer3 Request technical support
ZoomChanged Event
See Also 


Occurs when the zoom has changed in the viewer.

Syntax

Visual Basic (Declaration) 
Public Event ZoomChanged() As ZoomChangedEventHandler
Visual Basic (Usage)Copy Code
Dim instance As Viewer
Dim handler As ZoomChangedEventHandler
 
AddHandler instance.ZoomChanged, handler
C# 
public event ZoomChangedEventHandler ZoomChanged()

Event Data

The event handler receives an argument of type ZoomChangedEventArgs containing data related to this event. The following ZoomChangedEventArgs properties provide information specific to this event.

PropertyDescription
Zoom Returns the viewer's new Zoom value.

See Also