Class EventHandlerList
Represents a list of delegates.
Inheritance
System.Object
EventHandlerList
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Telerik.Charting
Assembly: Telerik.WinControls.dll
Syntax
public class EventHandlerList
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
|
System.Delegate
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
|
System.Delegate
handler
|