'Declaration
Public Event DeletingRows As EventHandler(Of DataGridDeletingRowsEventArgs)
public event 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.
Property | Description |
---|---|
Cancel | Gets or sets a value indicating whether the event is canceled. |
DeletedRows | Gets the deleted rows. |
See Also