Basic Library for WPF and Silverlight | ComponentOne
C1.Silverlight Namespace / CancelEventHandler Delegate
The source of the event.
A CancelEventArgs that contains the event data.

In This Topic
    CancelEventHandler Delegate
    In This Topic
    Represents the method that handles a cancelable event.
    Syntax
    'Declaration
     
    
    Public Delegate Sub CancelEventHandler( _
       ByVal sender As Object, _
       ByVal e As CancelEventArgs _
    ) 
    public delegate void CancelEventHandler( 
       object sender,
       CancelEventArgs e
    )

    Parameters

    sender
    The source of the event.
    e
    A CancelEventArgs that contains the event data.
    See Also