Spread WPF 17
GrapeCity.Windows.SpreadSheet.UI Namespace / GcSpreadSheet Class / UserZooming Event


In This Topic
    UserZooming Event (GcSpreadSheet)
    In This Topic
    Occurs when the user zooms.
    Syntax
    'Declaration
     
    Public Event UserZooming As EventHandler(Of ZoomEventArgs)
    'Usage
     
    Dim instance As GcSpreadSheet
    Dim handler As EventHandler(Of ZoomEventArgs)
     
    AddHandler instance.UserZooming, handler
    public event EventHandler<ZoomEventArgs> 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.

    PropertyDescription
    Gets the new zoom factor.  
    Gets the old zoom factor.  
    See Also