'DeclarationPublic Event LoadingRow As EventHandler(Of DataGridRowEventArgs)
public event EventHandler<DataGridRowEventArgs> LoadingRow
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.
| Property | Description |
|---|---|
| Row | Gets the row. |
Remarks
Typically used to initialize properties for a particular row.
See Also