New to Telerik UI for WPFStart a free 30-day trial

This is for internal use only and is not intended to be used directly from your code.

Definition

Namespace:Telerik.Windows.Data

Assembly:Telerik.Windows.Data.dll

Syntax:

C#
public class NotifyGroupCollectionChangedEventArgs : EventArgs

Inheritance: objectEventArgsNotifyGroupCollectionChangedEventArgs

Inherited Members EventArgs.Empty

Constructors

C#
public NotifyGroupCollectionChangedEventArgs()

Properties

Gets the action that caused the event.

C#
public NotifyGroupCollectionChangedAction Action { get; }

Gets the group which is affected by any CollectionChanged operation like Add, Remove or Replace.

C#
public IGroup AffectedGroup { get; }

Gets the list of new items involved in the change.

C#
public IList NewItems { get; }

Gets the index at which the change occurred.

C#
public int NewStartingIndex { get; }

Gets the list of items affected by a Replace, Remove, or Move action.

C#
public IList OldItems { get; }

Gets the index at which a Move, Remove, or Replace action occurred.

C#
public int OldStartingIndex { get; }