Class ItemsChangedEventArgs
Provides data for the ItemsChanged event.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Controls.GridView
Assembly: Telerik.Windows.Controls.GridView.dll
Syntax
public class ItemsChangedEventArgs : EventArgs
Properties
Action
Gets the action that occurred on the items collection.
Declaration
public NotifyCollectionChangedAction Action { get; }
Property Value
System.Collections.Specialized.NotifyCollectionChangedAction
|
ItemCount
Gets the number of items that were involved in the change.
Declaration
public int ItemCount { get; }
Property Value
System.Int32
|
ItemUICount
Gets the number of user interface (UI) elements involved in the change.
Declaration
public int ItemUICount { get; }
Property Value
System.Int32
|
OldPosition
Gets the position in the collection before the change occurred.
Declaration
public GeneratorPosition OldPosition { get; }
Property Value
System.Windows.Controls.Primitives.GeneratorPosition
|
Position
Gets the position in the collection where the change occurred.
Declaration
public GeneratorPosition Position { get; }
Property Value
System.Windows.Controls.Primitives.GeneratorPosition
|