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

Provides data for the Deleted event.

Definition

Namespace:Telerik.Windows.Controls

Assembly:Telerik.Windows.Controls.GridView.dll

Syntax:

C#
public class GridViewDeletedEventArgs : RadRoutedEventArgs

Inheritance: objectRadRoutedEventArgsGridViewDeletedEventArgs

Constructors

Initializes a new instance of the GridViewDeletedEventArgs class.

C#
public GridViewDeletedEventArgs(GridViewDataControl dataControl, IEnumerable<object> items)
Parameters:dataControlGridViewDataControl

The data control.

itemsIEnumerable<object>

The items.

Properties

Gets the data control that triggered the event.

C#
public GridViewDataControl DataControl { get; }

Gets the items that were deleted.

C#
public IEnumerable<object> Items { get; }
Property Value:

Deleted items.