Xceed Grid for WinForms v4.3 Documentation
How to make the InsertionRow insert its data

Welcome to Xceed Grid for WinForms v4.3 > Task-Based Help > Rows > How to make the InsertionRow insert its data

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.

Demonstration

The following example demonstrates how to insert the InsertionRow's underlying DataRow programmatically:

VB.NET Copy Code
InsertionRow1.EndEdit()
C# Copy Code
insertionRow1.EndEdit();