ComponentOne DataGrid for WPF and Silverlight
C1.WPF.DataGrid.Filters Namespace / DataGridComboBoxTextFilter Class / ItemsSource Property

In This Topic
    ItemsSource Property (DataGridComboBoxTextFilter)
    In This Topic
    Gets or sets the collection of items that will be used to built the list of matching values.
    Syntax
    'Declaration
     
    
    Public Property ItemsSource As IEnumerable
    public IEnumerable ItemsSource {get; set;}
    Example
    If this property contains the values Red, Yellow, Orange and Black and the user selects the operation 'contains' with value 'R' a filter state object will be built containing the predicate IsOneOf [Red,Orange] that are the values that contains the character 'R'
    See Also