FlexGrid for WPF | ComponentOne
C1.WPF.FlexGrid.4.6.2 Assembly / C1.WPF.FlexGrid Namespace / ColumnValueConverter Class / ColumnValueConverter Constructor / ColumnValueConverter Constructor(IEnumerable,String,String)
Collection of objects that contain the key and display values for the column.
Name of the property that contains the values stored in the grid.
Name of the property that contains the values displayed in the grid.

In This Topic
    ColumnValueConverter Constructor(IEnumerable,String,String)
    In This Topic
    Initializes a new instance of a ColumnValueConverter based on an object collection.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal values As IEnumerable, _
       ByVal valuePath As String, _
       ByVal displayMemberPath As String _
    )
    public ColumnValueConverter( 
       IEnumerable values,
       string valuePath,
       string displayMemberPath
    )

    Parameters

    values
    Collection of objects that contain the key and display values for the column.
    valuePath
    Name of the property that contains the values stored in the grid.
    displayMemberPath
    Name of the property that contains the values displayed in the grid.
    See Also