ComponentOne DataGrid for WPF and Silverlight
C1.WPF.DataGrid Namespace / C1DataGrid Class / DeletingRows Event

In This Topic
    DeletingRows Event
    In This Topic
    Occurs before a deletion of rows happens.
    Syntax
    'Declaration
     
    
    Public Event DeletingRows As EventHandler(Of DataGridDeletingRowsEventArgs)
    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