'DeclarationPublic Event BeginningNewRow As EventHandler(Of DataGridBeginningNewRowEventArgs)
public event EventHandler<DataGridBeginningNewRowEventArgs> BeginningNewRow
Event Data
The event handler receives an argument of type DataGridBeginningNewRowEventArgs containing data related to this event. The following DataGridBeginningNewRowEventArgs properties provide information specific to this event.
| Property | Description |
|---|---|
| Cancel | Gets or sets a value indicating whether the event is canceled. |
| Item | Gets or sets the data item corresponding to the new row. |
| NewRow | Gets the new row. |
See Also