Class
NotifyGroupCollectionChangedEventArgs

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:

cs-api-definition
public class NotifyGroupCollectionChangedEventArgs : EventArgs

Inheritance: objectEventArgsNotifyGroupCollectionChangedEventArgs

Inherited Members EventArgs.Empty

Constructors

NotifyGroupCollectionChangedEventArgs()

Declaration

cs-api-definition
public NotifyGroupCollectionChangedEventArgs()

Properties

Action

Gets the action that caused the event.

Declaration

cs-api-definition
public NotifyGroupCollectionChangedAction Action { get; }

Property Value

NotifyGroupCollectionChangedAction

AffectedGroup

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

Declaration

cs-api-definition
public IGroup AffectedGroup { get; }

Property Value

IGroup

NewItems

Gets the list of new items involved in the change.

Declaration

cs-api-definition
public IList NewItems { get; }

Property Value

IList

NewStartingIndex

Gets the index at which the change occurred.

Declaration

cs-api-definition
public int NewStartingIndex { get; }

Property Value

int

OldItems

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

Declaration

cs-api-definition
public IList OldItems { get; }

Property Value

IList

OldStartingIndex

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

Declaration

cs-api-definition
public int OldStartingIndex { get; }

Property Value

int