The delegate that is used to deliver HierarchyEventArgs<(Of <(<'T>)>)> of an IHierarchy<(Of <(<'T>)>)>.

Namespace: yWorks.yFiles.UI.Model
Assembly: yWorks.yFilesWPF.Viewer (in yWorks.yFilesWPF.Viewer.dll) Version: 2.2.0.2 (2.2.0.2)

Syntax

C#
public delegate void HierarchyItemEventHandler<T>(
	Object source,
	HierarchyEventArgs<T> eventArgs
)
where T : class
Visual Basic
Public Delegate Sub HierarchyItemEventHandler(Of T As Class) ( _
	source As Object, _
	eventArgs As HierarchyEventArgs(Of T) _
)

Parameters

source
Type: System..::..Object
The source that triggered the event. This is an IHierarchy<(Of <(<'T>)>)> implementation.
eventArgs
Type: yWorks.yFiles.UI.Model..::..HierarchyEventArgs<(Of <(<'T>)>)>
The event arguments.

Type Parameters

T
The type of the item in the hierarchy.

See Also