Class GridViewCollectionChangingEventArgs
Provides data for the GridViewCollectionChanging event
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public class GridViewCollectionChangingEventArgs : NotifyCollectionChangingEventArgs
Constructors
GridViewCollectionChangingEventArgs(GridViewTemplate, NotifyCollectionChangedAction, IList, IList, Int32, Int32, PropertyChangingEventArgsEx)
Initializes a new instance of the GridViewCollectionChangingEventArgs class.
Declaration
public GridViewCollectionChangingEventArgs(GridViewTemplate template, NotifyCollectionChangedAction action, IList newItems, IList oldItems, int newStartingIndex, int oldStartingIndex, PropertyChangingEventArgsEx propertyArgs)
Parameters
GridViewTemplate
template
The GridViewTemplate |
NotifyCollectionChangedAction action |
System.Collections.IList
newItems
The new items list |
System.Collections.IList
oldItems
The old items list |
System.Int32
newStartingIndex
The new items starting index |
System.Int32
oldStartingIndex
The old items starting index |
PropertyChangingEventArgsEx
propertyArgs
The property changing arguments |
GridViewCollectionChangingEventArgs(GridViewTemplate, NotifyCollectionChangedAction, Object, Int32, Int32)
Initializes a new instance of the GridViewCollectionChangingEventArgs class.
Declaration
public GridViewCollectionChangingEventArgs(GridViewTemplate template, NotifyCollectionChangedAction action, object changedItem, int index, int oldIndex)
Parameters
GridViewTemplate
template
The GridViewTemplate |
NotifyCollectionChangedAction action |
System.Object
changedItem
The changed item |
System.Int32
index
The index |
System.Int32
oldIndex
The old index |
GridViewCollectionChangingEventArgs(GridViewTemplate, NotifyCollectionChangedAction, Object, Object, Int32, PropertyChangingEventArgsEx)
Initializes a new instance of the GridViewCollectionChangingEventArgs class.
Declaration
public GridViewCollectionChangingEventArgs(GridViewTemplate template, NotifyCollectionChangedAction action, object newItem, object oldItem, int index, PropertyChangingEventArgsEx propertyArgs)
Parameters
GridViewTemplate
template
The GridViewTemplate |
NotifyCollectionChangedAction action |
System.Object
newItem
The new item |
System.Object
oldItem
The old item |
System.Int32
index
The new index |
PropertyChangingEventArgsEx
propertyArgs
The property changing arguments |
Properties
GridViewTemplate
Gets the GridViewTemplate
Declaration
public GridViewTemplate GridViewTemplate { get; }
Property Value
GridViewTemplate
|
NewValue
Gets the new value.
Declaration
public object NewValue { get; }
Property Value
System.Object
The new value. |
OldValue
Gets the old value.
Declaration
public object OldValue { get; }
Property Value
System.Object
The old value. |
PropertyName
Gets the name of the property.
Declaration
public string PropertyName { get; }
Property Value
System.String
The name of the property. |