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

In This Topic
    CommittingNewRow Event (C1DataGrid)
    In This Topic
    Occurs before a new row is committed, allowing to cancel the action.
    Syntax
    'Declaration
     
    
    Public Event CommittingNewRow As EventHandler(Of DataGridEndingNewRowEventArgs)
    public event EventHandler<DataGridEndingNewRowEventArgs> CommittingNewRow
    Event Data

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

    PropertyDescription
    Gets or sets a value indicating whether the event is canceled.  
    Gets the new row.  
    See Also