ComponentOne DataGrid for WPF and Silverlight
RowsDeleted Event (C1DataGrid)

C1.WPF.DataGrid Namespace > C1DataGrid Class : RowsDeleted Event
Occurs after rows have been deleted from the C1DataGrid.
Syntax
'Declaration
 
Public Event RowsDeleted As System.EventHandler(Of DataGridRowsDeletedEventArgs)
public event System.EventHandler<DataGridRowsDeletedEventArgs> RowsDeleted
Event Data

The event handler receives an argument of type DataGridRowsDeletedEventArgs containing data related to this event. The following DataGridRowsDeletedEventArgs properties provide information specific to this event.

PropertyDescription
Gets the deleted rows.  
See Also