ComponentOne DataGrid for WPF and Silverlight
DeletingRows Event (C1DataGrid)

C1.WPF.DataGrid Namespace > C1DataGrid Class : DeletingRows Event
Occurs before a deletion of rows happens.
Syntax
'Declaration
 
Public Event DeletingRows As System.EventHandler(Of DataGridDeletingRowsEventArgs)
public event System.EventHandler<DataGridDeletingRowsEventArgs> DeletingRows
Event Data

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

PropertyDescription
Gets or sets a value indicating whether the event is canceled.  
Gets the deleted rows.  
See Also