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

In This Topic
    RowCancelingEdit Event
    In This Topic
    Occurs when the Cancel button of a item in edit mode is clicked, but before the item exits edit mode.
    Syntax
    'Declaration
     
    Public Event RowCancelingEdit As C1GridViewCancelEditEventHandler
    public event C1GridViewCancelEditEventHandler RowCancelingEdit
    Event Data

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

    PropertyDescription
    (Inherited from System.ComponentModel.CancelEventArgs)
    Gets the index of the row containing the Cancel button that raised the event.  
    Remarks
    To stop the operation set the Cancel property of the C1GridViewCancelEditEventArgs object to true.
    See Also