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

In This Topic
    UnloadingRow Event
    In This Topic
    Occurs after a row is unloaded from the model.
    Syntax
    'Declaration
     
    
    Public Event UnloadingRow As EventHandler(Of DataGridRowEventArgs)
    public event EventHandler<DataGridRowEventArgs> UnloadingRow
    Event Data

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

    PropertyDescription
    Gets the row.  
    See Also