Skip to main content

LookUpEdit.FilteredItems Property

Gets the collection of items that match the text typed by an end-user into the edit box.

Namespace: DevExpress.Xpf.Grid.LookUp

Assembly: DevExpress.Xpf.Grid.v23.2.dll

NuGet Package: DevExpress.Wpf.Grid.Core

Declaration

public IEnumerable FilteredItems { get; }

Property Value

Type Description
IEnumerable

The collection of filtered items.

Remarks

If the LookUpEditBase.IncrementalFiltering option is enabled, end-users can filter list items dynamically, based upon the text typed into the edit box (find-as-you-type filtering). The FilteredItems collection contains items that match the text typed by an end-user. To access the editor’s data source containing all items, use the LookUpEditBase.ItemsSource property.

Note

Filtering applied using the embedded DXGrid control does not affect FilteredItems.

See Also