C1.Web.Wijmo.Controls.45 Assembly / C1.Web.Wijmo.Controls.C1GridView Namespace / C1GridView Class / RowCancelingEdit Event

RowCancelingEdit Event
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
 
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