Adds a IDataAccessor on the top hierarchical level of the GridControl.

Namespace: Dapfor.Wpf.Controls
Assembly: Dapfor.Wpf (in Dapfor.Wpf.dll) Version: 4.1.0.26317 (4.1.0.26317)

Syntax

C#
public Row Add(
	IDataAccessor dataAccessor
)
Visual Basic
Public Function Add ( 
	dataAccessor As IDataAccessor
) As Row
Visual C++
public:
Row^ Add(
	IDataAccessor^ dataAccessor
)
F#
member Add : 
        dataAccessor : IDataAccessor -> Row 

Parameters

dataAccessor
Type: Dapfor.Wpf.Data..::..IDataAccessor
The data accessor.

Return Value

Type: Row
A new Row, having the IDataAccessor if success; Otherwise null. The returned Row may be used to build any hierarchy in the GridControl.

Thread Safety

The function is thread safe. The Row is added in the synchronous way with blocking the calling thread.

See Also