Sets the converter source to a list of objects that contain the keys (values stored in the column cells) and their corresponding display values.

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

Syntax

C#
public void SetSource(
	IEnumerable values,
	string valuePath,
	string displayMemberPath
)
Visual Basic
Public Sub SetSource ( _
	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