Class GridViewDeletedEventArgs
Provides data for the Deleted event.
Inherited Members
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.GridView.dll
Syntax
public class GridViewDeletedEventArgs : RadRoutedEventArgs
Constructors
GridViewDeletedEventArgs(GridViewDataControl, IEnumerable<Object>)
Initializes a new instance of the GridViewDeletedEventArgs class.
Declaration
public GridViewDeletedEventArgs(GridViewDataControl dataControl, IEnumerable<object> items)
Parameters
GridViewDataControl
dataControl
The data control. |
System.Collections.Generic.IEnumerable<System.Object>
items
The items. |
Properties
DataControl
Gets the data control that triggered the event.
Declaration
public GridViewDataControl DataControl { get; }
Property Value
GridViewDataControl
|
Items
Gets the items that were deleted.
Declaration
public IEnumerable<object> Items { get; }
Property Value
System.Collections.Generic.IEnumerable<System.Object>
Deleted items. |