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


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

    Parameters

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