Inserts a new data object at the specified index on the top hierarchical level of 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 Row Insert(
	int index,
	Object dataObject
)
Visual Basic
Public Function Insert ( 
	index As Integer,
	dataObject As Object
) As Row
Visual C++
public:
Row^ Insert(
	int index, 
	Object^ dataObject
)
F#
member Insert : 
        index : int * 
        dataObject : Object -> Row 

Parameters

index
Type: System..::..Int32
The index.
dataObject
Type: System..::..Object
The data object.

Return Value

Type: Row
Row object if success. Otherwise null.

See Also