Spread WPF 18
GrapeCity.Wpf.SpreadSheet Namespace / DataItemCreatedEventHandler Delegate
The object where the event handler is attached.
The event data.


In This Topic
    DataItemCreatedEventHandler Delegate
    In This Topic
    Represents the method that will handle the DataItemCreated routed event.
    Syntax
    'Declaration
     
    Public Delegate Sub DataItemCreatedEventHandler( _
       ByVal sender As Object, _
       ByVal e As DataItemCreatedEventArgs _
    ) 
    'Usage
     
    Dim instance As New DataItemCreatedEventHandler(AddressOf HandlerMethod)
    public delegate void DataItemCreatedEventHandler( 
       object sender,
       DataItemCreatedEventArgs e
    )

    Parameters

    sender
    The object where the event handler is attached.
    e
    The event data.
    See Also