Sometimes I'm in the Telerik Winform RadGrid AddingNewRow event and I need to completely cancel the new row.
e.Cancel only cancels the add, the new row is still populated.
The code sample below will do the trick.
Me.RadGridView1.CancelEdit()
Me.RadGridView1.MasterView.TableAddNewRow.CancelAddNewRow()