Xceed Grid for WinForms v4.3 Documentation
Xceed.Grid.v4.3 Assembly / Xceed.Grid.Collections Namespace / EventHandlerTable Class / AddHandler Method
The object that owns the event.
The delegate to add to the list.


In This Topic
    AddHandler Method (EventHandlerTable)
    In This Topic
    Adds a delegate to the list.
    Syntax
    'Declaration
     
    Public Overridable Sub AddHandler( _
       ByVal eventKey As Object, _
       ByVal handler As Delegate _
    ) 
    'Usage
     
    Dim instance As EventHandlerTable
    Dim eventKey As Object
    Dim handler As Delegate
     
    instance.AddHandler(eventKey, handler)
    public virtual void AddHandler( 
       object eventKey,
       Delegate handler
    )

    Parameters

    eventKey
    The object that owns the event.
    handler
    The delegate to add to the list.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also