Possible actions upon data insertion to the grid
Namespace: Dapfor.Wpf.ControlsAssembly: Dapfor.Wpf (in Dapfor.Wpf.dll) Version: 4.1.0.26317 (4.1.0.26317)
Syntax
C# |
---|
public enum InsertionType |
Visual Basic |
---|
Public Enumeration InsertionType |
Visual C++ |
---|
public enum class InsertionType |
F# |
---|
type InsertionType |
Members
Member name | Value | Description | |
---|---|---|---|
AsChild | 0 | Regular method of data object insertion to parent. A programmer may replace the inserted object with any other object on his own discretion. | |
AsCollection | 1 | A programmer may replace a data object with any collection that shall be added instead of the specified object. | |
AsChildAndCollection | 2 | The grid adds a data object and a new collection. The data object is added to the specified parent as with AsChild, and the collection is added on the next hierarchy level to the data object that has just been added. | |
AsDataRelation | 3 | Indicates that the grid should add the specified DataRow and related children. | |
Skip | 4 | The data object is not added to the grid |