Class NotifyGroupCollectionChangedEventArgs
This is for internal use only and is not intended to be used directly from your code.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Data
Assembly: Telerik.Windows.Data.dll
Syntax
public class NotifyGroupCollectionChangedEventArgs : EventArgs
Constructors
NotifyGroupCollectionChangedEventArgs()
Declaration
public NotifyGroupCollectionChangedEventArgs()
Properties
Action
Gets the action that caused the event.
Declaration
public NotifyGroupCollectionChangedAction Action { get; }
Property Value
NotifyGroupCollectionChangedAction
|
AffectedGroup
Gets the group which is affected by any CollectionChanged operation like Add, Remove or Replace.
Declaration
public IGroup AffectedGroup { get; }
Property Value
IGroup
|
NewItems
Gets the list of new items involved in the change.
Declaration
public IList NewItems { get; }
Property Value
System.Collections.IList
|
NewStartingIndex
Gets the index at which the change occurred.
Declaration
public int NewStartingIndex { get; }
Property Value
System.Int32
|
OldItems
Gets the list of items affected by a Replace, Remove, or Move action.
Declaration
public IList OldItems { get; }
Property Value
System.Collections.IList
|
OldStartingIndex
Gets the index at which a Move, Remove, or Replace action occurred.
Declaration
public int OldStartingIndex { get; }
Property Value
System.Int32
|