Class EventHandlerList
Represents a list of delegates.
Inheritance
Namespace: Telerik.Charting
Assembly: Telerik.Windows.Controls.Chart.dll
Syntax
public class EventHandlerList : Object
Constructors
EventHandlerList()
Declaration
public EventHandlerList()
Properties
Item[Object]
Retrieves the delegate, associated with the provided key.
Declaration
public Delegate this[object key] { get; }
Parameters
System.Object
key
|
Property Value
System.Delegate
|
Methods
AddHandler(Object, Delegate)
Adds the specified delegate associated with the provided key.
Declaration
public void AddHandler(object key, Delegate handler)
Parameters
System.Object
key
An identifier of the event. |
System.Delegate
handler
A reference to the event handler. |
Clear()
Clears the list.
Declaration
public void Clear()
RemoveHandler(Object, Delegate)
Removes the specified delegate associated with the provided key.
Declaration
public void RemoveHandler(object key, Delegate handler)
Parameters
System.Object
key
An identifier of the event. |
System.Delegate
handler
A reference to the event handler. |