Initializes a new instance of the DictionaryDataAccessor class.

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

Syntax

C#
public DictionaryDataAccessor(
	IDictionary collection
)
Visual Basic
Public Sub New ( 
	collection As IDictionary
)
Visual C++
public:
DictionaryDataAccessor(
	IDictionary^ collection
)
F#
new : 
        collection : IDictionary -> DictionaryDataAccessor

Parameters

collection
Type: System.Collections..::..IDictionary
The collection.

Remarks

The object of IDictionary<(Of <(<'TKey, TValue>)>)> class is related to a row in the grid. The keys present field identifiers and values are shown in corresponding cells. It is necessary, that keys are be of the String type. Otherwise an exception will be raised.

See Also