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

In This Topic
    BeginningNewRow Event
    In This Topic
    Occurs when a new row begins to be edited.
    Syntax
    'Declaration
     
    
    Public Event BeginningNewRow As EventHandler(Of DataGridBeginningNewRowEventArgs)
    public event EventHandler<DataGridBeginningNewRowEventArgs> BeginningNewRow
    Event Data

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

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