With version 1.0 of Xceed Grid for WinForms it is not possible to make the InsertionRow insert its DataRow programmatically.
As of version 1.1, the BeginEdit and EndEdit methods have been moved to the CellRow class rather than only the DataRow class meaning that you will only need to call the EndEdit method on the InsertionRow to commit the row.
The following example demonstrates how to insert the InsertionRow's underlying DataRow programmatically:
VB.NET | Copy Code |
---|---|
InsertionRow1.EndEdit() |
C# | Copy Code |
---|---|
insertionRow1.EndEdit(); |