Input for WinForms | ComponentOne
C1.Win.Input.DbNavigator.Events Namespace / NavItemEventHandler Delegate
The source of the event.
An NavItemEventArgs that contains no event data.

In This Topic
    NavItemEventHandler Delegate
    In This Topic
    Represents a method that can handle item events which may or may not require further processing after the event handler has returned.
    Syntax
    'Declaration
     
    
    Public Delegate Sub NavItemEventHandler( _
       ByVal sender As Object, _
       ByVal e As NavItemEventArgs _
    ) 
    public delegate void NavItemEventHandler( 
       object sender,
       NavItemEventArgs e
    )

    Parameters

    sender
    The source of the event.
    e
    An NavItemEventArgs that contains no event data.
    See Also