[This is preliminary documentation and is subject to change.]

Delegate of handler of Adding, Removing and ItemChanging events

Namespace: Tools.CollectionsT.GenericT
Assembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
public delegate void ItemCancelEventHandler(
	ListWithEvents<T> sender,
	ListWithEvents<(Of <(<'T>)>)>..::..CancelableItemIndexEventArgs e
)
Visual Basic
Public Delegate Sub ItemCancelEventHandler ( _
	sender As ListWithEvents(Of T), _
	e As ListWithEvents<(Of <(<'T>)>)>..::..CancelableItemIndexEventArgs _
)
Visual C++
public delegate void ItemCancelEventHandler(
	ListWithEvents<T>^ sender, 
	ListWithEvents<(Of <(<'T>)>)>..::..CancelableItemIndexEventArgs^ e
)
F#
type ItemCancelEventHandler = 
    delegate of 
        sender:ListWithEvents<'T> * 
        e:ListWithEvents<(Of <(<'T>)>)>..::..CancelableItemIndexEventArgs -> unit
JScript
JScript does not support delegates.

See Also