'Declaration
Public Event UserZooming As UserZoomingEventHandler
'Usage
Dim instance As FpSpread Dim handler As UserZoomingEventHandler AddHandler instance.UserZooming, handler
public event UserZoomingEventHandler UserZooming
Event Data
The event handler receives an argument of type ZoomEventArgs containing data related to this event. The following ZoomEventArgs properties provide information specific to this event.
Property | Description |
---|---|
NewZoomFactor | Gets or sets the new zoom factor of the spread. |
OldZoomFactor | Gets the old zoom factor of the spread. |
See Also