Class GridViewCollectionChangedEventArgs
Provides data for the GridViewCollectionChanged event
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public class GridViewCollectionChangedEventArgs : NotifyCollectionChangedEventArgs
Constructors
GridViewCollectionChangedEventArgs(GridViewTemplate, NotifyCollectionChangedAction, IList, IList, Int32, Int32, String)
Initializes a new instance of the GridViewCollectionChangedEventArgs class.
Declaration
public GridViewCollectionChangedEventArgs(GridViewTemplate template, NotifyCollectionChangedAction action, IList newItems, IList oldItems, int newStartingIndex, int oldStartingIndex, string propertyName)
Parameters
GridViewTemplate
template
|
NotifyCollectionChangedAction
action
|
System.Collections.IList
newItems
|
System.Collections.IList
oldItems
|
System.Int32
newStartingIndex
|
System.Int32
oldStartingIndex
|
System.String
propertyName
|
GridViewCollectionChangedEventArgs(GridViewTemplate, NotifyCollectionChangedAction, Object, Int32, Int32)
Initializes a new instance of the GridViewCollectionChangedEventArgs class.
Declaration
public GridViewCollectionChangedEventArgs(GridViewTemplate template, NotifyCollectionChangedAction action, object changedItem, int index, int oldIndex)
Parameters
GridViewTemplate
template
|
NotifyCollectionChangedAction
action
|
System.Object
changedItem
|
System.Int32
index
|
System.Int32
oldIndex
|
GridViewCollectionChangedEventArgs(GridViewTemplate, NotifyCollectionChangedAction, Object, Object, Int32, String)
Initializes a new instance of the GridViewCollectionChangedEventArgs class.
Declaration
public GridViewCollectionChangedEventArgs(GridViewTemplate template, NotifyCollectionChangedAction action, object newItem, object oldItem, int index, string propertyName)
Parameters
GridViewTemplate
template
|
NotifyCollectionChangedAction
action
|
System.Object
newItem
|
System.Object
oldItem
|
System.Int32
index
|
System.String
propertyName
|
Properties
GridViewTemplate
Gets the GridViewTemplate where the event was fired.
Declaration
public GridViewTemplate GridViewTemplate { get; }
Property Value
GridViewTemplate
|