ComponentOne DataGrid for WPF and Silverlight
RowsAdded Event (C1DataGrid)

C1.WPF.DataGrid Namespace > C1DataGrid Class : RowsAdded Event
Occurs after new rows have been added to the C1DataGrid.
Syntax
'Declaration
 
Public Event RowsAdded As System.EventHandler(Of DataGridRowsAddedEventArgs)
public event System.EventHandler<DataGridRowsAddedEventArgs> RowsAdded
Event Data

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

PropertyDescription
Gets the added rows.  
See Also