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

In This Topic
    CurrentCellChanged Event (C1DataGrid)
    In This Topic
    Occurs when a different cell becomes the current cell. Typically this occurs when a user clicks a cell, but it can be set programmatically too by setting CurrentRow and CurrentColumn.
    Syntax
    'Declaration
     
    
    Public Event CurrentCellChanged As EventHandler(Of DataGridCellEventArgs)
    public event EventHandler<DataGridCellEventArgs> CurrentCellChanged
    Event Data

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

    PropertyDescription
    Gets the cell.  
    See Also