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

In This Topic
    BeganEdit Event (C1DataGrid)
    In This Topic
    Occurs after a cell began to be edited.
    Syntax
    'Declaration
     
    
    Public Event BeganEdit As EventHandler(Of DataGridBeganEditEventArgs)
    Event Data

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

    PropertyDescription
    Gets the column corresponding to the editing cell.  
    Gets the editing ui element.  
    Gets the row corresponding to the editing cell.  
    Remarks
    This event typically occurs when the user press F2 over a cell or click a cell or a row that already contains the current cell. This event can be used to modify the editing control.
    See Also