ComponentOne DataGrid for WPF and Silverlight
UnloadingRow Event (C1DataGrid)

C1.WPF.DataGrid Namespace > C1DataGrid Class : UnloadingRow Event
Occurs after a row is unloaded from the model.
Syntax
'Declaration
 
Public Event UnloadingRow As System.EventHandler(Of DataGridRowEventArgs)
public event System.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