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

Namespace: Dapfor.Net.Ui
Assembly: Dapfor.Net (in Dapfor.Net.dll) Version: 2.10.3.24917 (2.10.3.24917)

Collapse imageSyntax

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.Net.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 Grid.

Collapse imageThread Safety

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

Collapse imageSee Also