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

In This Topic
    BeginningRowEdit Event
    In This Topic
    Occurs before a row begins to be edited. A row begins to be edited when one cell of the row begins editing and there was not previously editing cells in the row.
    Syntax
    'Declaration
     
    
    Public Event BeginningRowEdit As EventHandler(Of DataGridEditingRowEventArgs)
    public event EventHandler<DataGridEditingRowEventArgs> BeginningRowEdit
    Event Data

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

    PropertyDescription
    Gets or sets a value indicating whether this DataGridEditingRowEventArgs is canceled.  
    Gets the row. (Inherited from C1.WPF.DataGrid.DataGridRowEventArgs)
    Remarks
    You can cancel the event setting DataGridEditingRowEventArgs.Cancel to true.
    See Also