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

In This Topic
    CancelingNewRow Event
    In This Topic
    Occurs when a new row is canceled.
    Syntax
    'Declaration
     
    
    Public Event CancelingNewRow As EventHandler(Of DataGridEndingNewRowEventArgs)
    public event EventHandler<DataGridEndingNewRowEventArgs> CancelingNewRow
    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