Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.GridView.dll
Syntax:
public class DataViewChangedEventArgs : EventArgs
Inheritance: objectEventArgsDataViewChangedEventArgs
Inherited Members
Constructors
Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a one-item Replace change.
public DataViewChangedEventArgs(ViewChangedAction action, IList newItems, IList oldItems, int startingIndex, string propertyName)
Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a multi-item Replace change.
public DataViewChangedEventArgs(ViewChangedAction action, IList newItems, IList oldItems, int startingIndex)
Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a multi-item Replace change.
public DataViewChangedEventArgs(ViewChangedAction action, IList newItems, IList oldItems)
Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a multi-item Move change.
public DataViewChangedEventArgs(ViewChangedAction action, IList changedItems, int index, int oldIndex)
Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a multi-item change or a reset change.
public DataViewChangedEventArgs(ViewChangedAction action, IList changedItems, int startingIndex)
Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a multi-item change.
public DataViewChangedEventArgs(ViewChangedAction action, IList changedItems)
Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a multi-item Move change.
public DataViewChangedEventArgs(ViewChangedAction action, object changedItem, int index, int oldIndex)
Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a one-item change.
public DataViewChangedEventArgs(ViewChangedAction action, object changedItem, int index)
Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a one-item Replace change.
public DataViewChangedEventArgs(ViewChangedAction action, object newItem, object oldItem, int index)
Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a one-item Replace change.
public DataViewChangedEventArgs(ViewChangedAction action, object newItem, object oldItem)
Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a one-item change.
public DataViewChangedEventArgs(ViewChangedAction action, object changedItem)
Initializes a new instance of the NotifyCollectionChangedEventArgs class that describes a Reset change.
public DataViewChangedEventArgs(ViewChangedAction action)
The action that caused the event. This must be set to Reset.
Properties
Provides data for the ViewChanged event.
public ViewChangedAction Action { get; }
Gets the index at which the change occurred.
public int NewStartingIndex { get; }
Gets the list of items affected by a Replace, Remove, or Move action.
public IList OldItems { get; }
Gets the index at which a Move, Remove, ore Replace action occurred.
public int OldStartingIndex { get; }
Gets the name of the property that chanhged.
public string PropertyName { get; }