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.yFilesNET.Viewer (in yWorks.yFilesNET.Viewer.dll) Version: 4.1.0.1 (4.1.0.1)

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