Scheduler for UWP | ComponentOne
C1.C1Schedule Namespace / AddingNewEventHandler Delegate
The source of the event, typically a data container or data-bound collection.
A AddingNewEventArgs that contains the event data.

In This Topic
    AddingNewEventHandler Delegate
    In This Topic
    Represents the method that will handle the BindingSource.AddingNew event.
    Syntax
    'Declaration
     
    
    Public Delegate Sub AddingNewEventHandler( _
       ByVal sender As Object, _
       ByVal e As AddingNewEventArgs _
    ) 
    public delegate void AddingNewEventHandler( 
       object sender,
       AddingNewEventArgs e
    )

    Parameters

    sender
    The source of the event, typically a data container or data-bound collection.
    e
    A AddingNewEventArgs that contains the event data.
    See Also