Initializes a new instance of a ColumnValueConverter based on an object collection.

Namespace:  C1.Silverlight.FlexGrid
Assembly:  C1.Silverlight.FlexGrid.4 (in C1.Silverlight.FlexGrid.4.dll)

Syntax

C#
public ColumnValueConverter(
	IEnumerable values,
	string valuePath,
	string displayMemberPath
)
Visual Basic
Public Sub New ( _
	values As IEnumerable, _
	valuePath As String, _
	displayMemberPath As String _
)

Parameters

values
Type: System.Collections..::..IEnumerable
Collection of objects that contain the key and display values for the column.
valuePath
Type: System..::..String
Name of the property that contains the values stored in the grid.
displayMemberPath
Type: System..::..String
Name of the property that contains the values displayed in the grid.

See Also