ComponentOne GridView for ASP.NET WebForms
C1.Web.Wijmo.Controls.4 Assembly / C1.Web.Wijmo.Controls.C1GridView Namespace / C1GridView Class / RowDeleted Event

In This Topic
    RowDeleted Event
    In This Topic
    Occurs when the Delete button is clicked.
    Syntax
    'Declaration
     
    Public Event RowDeleted As C1GridViewDeletedEventHandler
    public event C1GridViewDeletedEventHandler RowDeleted
    Event Data

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

    PropertyDescription
    Gets the number of rows affected by the delete operation.  
    Gets the exception that was raised during the delete operation.  
    Gets or sets a value indicating whether an exception that was raised during the delete operation was handled in the event handler.  
    Gets an ordered dictionary of key field name/value pairs for the deleted record.  
    Gets a dictionary of the non-key field name/value pairs for the deleted record.  
    Remarks
    The event occurs only if the grid is bound to a DataSource control.
    See Also