An event handler delegate used for ItemEventArgs<(Of <(<'T>)>)> in the context of ICollectionModel<(Of <(<'T>)>)> and the like.

Namespace: yWorks.Canvas.Model
Assembly: yWorks.yFilesSilverlight.Viewer (in yWorks.yFilesSilverlight.Viewer.dll) Version: 2.1.0.2

Syntax

C#
public delegate void ItemEventHandler<T>(
	Object source,
	ItemEventArgs<T> evt
)
Visual Basic
Public Delegate Sub ItemEventHandler(Of T) ( _
	source As Object, _
	evt As ItemEventArgs(Of T) _
)

Parameters

source
Type: System..::..Object
The source of the event.
evt
Type: yWorks.Canvas.Model..::..ItemEventArgs<(Of <(<'T>)>)>
The event arguments.

Type Parameters

T
The type of item that is the subject of the event.

See Also