Possible actions upon data insertion to the grid

Namespace: Dapfor.Wpf.Controls
Assembly: 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 nameValueDescription
AsChild0 Regular method of data object insertion to parent. A programmer may replace the inserted object with any other object on his own discretion.
AsCollection1 A programmer may replace a data object with any collection that shall be added instead of the specified object.
AsChildAndCollection2 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.
AsDataRelation3 Indicates that the grid should add the specified DataRow and related children.
Skip4 The data object is not added to the grid

See Also