'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.
Property | Description |
---|---|
Cancel | (Inherited from System.ComponentModel.CancelEventArgs) |
RowIndex | 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