New to Telerik UI for WinFormsStart a free 30-day trial

Provides data for the GridViewCollectionChanged event

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.GridView.dll

Syntax:

C#
public class GridViewCollectionChangedEventArgs : NotifyCollectionChangedEventArgs

Inheritance: objectEventArgsNotifyCollectionChangedEventArgsGridViewCollectionChangedEventArgs

Inherited Members NotifyCollectionChangedEventArgs.PropertyNameNotifyCollectionChangedEventArgs.ActionNotifyCollectionChangedEventArgs.ResetReasonNotifyCollectionChangedEventArgs.NewItemsNotifyCollectionChangedEventArgs.NewStartingIndexNotifyCollectionChangedEventArgs.OldItemsNotifyCollectionChangedEventArgs.OldStartingIndexEventArgs.Empty...

Constructors

Initializes a new instance of the GridViewCollectionChangedEventArgs class.

C#
public GridViewCollectionChangedEventArgs(GridViewTemplate template, NotifyCollectionChangedAction action, IList newItems, IList oldItems, int newStartingIndex, int oldStartingIndex, string propertyName)
Parameters:templateGridViewTemplateactionNotifyCollectionChangedActionnewItemsIListoldItemsIListnewStartingIndexintoldStartingIndexintpropertyNamestring

Initializes a new instance of the GridViewCollectionChangedEventArgs class.

C#
public GridViewCollectionChangedEventArgs(GridViewTemplate template, NotifyCollectionChangedAction action, object changedItem, int index, int oldIndex)
Parameters:templateGridViewTemplateactionNotifyCollectionChangedActionchangedItemobjectindexintoldIndexint

Initializes a new instance of the GridViewCollectionChangedEventArgs class.

C#
public GridViewCollectionChangedEventArgs(GridViewTemplate template, NotifyCollectionChangedAction action, object newItem, object oldItem, int index, string propertyName)
Parameters:templateGridViewTemplateactionNotifyCollectionChangedActionnewItemobjectoldItemobjectindexintpropertyNamestring

Properties

Gets the GridViewTemplate where the event was fired.

C#
public GridViewTemplate GridViewTemplate { get; }