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