'Declaration
Public Event CreatingRow As System.EventHandler(Of DataGridCreatingRowEventArgs)
public event System.EventHandler<DataGridCreatingRowEventArgs> CreatingRow
Event Data
The event handler receives an argument of type DataGridCreatingRowEventArgs containing data related to this event. The following DataGridCreatingRowEventArgs properties provide information specific to this event.
Property | Description |
---|---|
DataItem | Gets the data item associated with this row. |
Row | Gets or sets the row that will be used. |
Type | Gets the type of row. |
Remarks
Typically used to inject custom rows like SummaryRow, TemplateRow, etc
See Also