Click or drag to resize

PropertyStoreRemoveEvent Method

Removes the event delegate with the specified key

Namespace:  Eto
Assembly:  Eto (in Eto.dll) Version: 2.5.3-dev
Syntax
public void RemoveEvent(
	Object key,
	Delegate value
)

Parameters

key
Type: SystemObject
Key of the event to remove
value
Type: SystemDelegate
Delegate to remove from the event
Remarks
Use this in the remove accessor of your event. See AddEvent(Object, Delegate) and AddHandlerEvent(String, Delegate) for examples.
See Also