Initializes a new instance of the NotifyCollectionChangedEventArgs class.

Namespace:  C1.C1Schedule
Assembly:  C1.Web.UI.Controls.2 (in C1.Web.UI.Controls.2.dll)

Syntax

C#
public NotifyCollectionChangedEventArgs(
	NotifyCollectionChangedAction action,
	Object newItem,
	Object oldItem,
	int index
)
Visual Basic
Public Sub New ( _
	action As NotifyCollectionChangedAction, _
	newItem As Object, _
	oldItem As Object, _
	index As Integer _
)

Parameters

action
Type: C1.C1Schedule..::..NotifyCollectionChangedAction
The NotifyCollectionChangedAction action that caused a CollectionChanged event.
newItem
Type: System..::..Object
The new item.
oldItem
Type: System..::..Object
The old item.
index
Type: System..::..Int32
The zero-based index of the item.

See Also