'Declaration Public Event ZoomChanged As ZoomChangedEventHandler
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.
Property | Description |
---|---|
Zoom | Gets the new zoom value of the viewer. |
Remarks
This event provides a way to respond to changes in the zoom level of thumbnails within the Thumbnails Panel. It can be used to trigger additional actions in the application, such as updating other UI elements to reflect the new zoom level or logging the change for analytics purposes. Listening to this event helps ensure that the application can dynamically adapt to user preferences and interactions.
See Also