Skip to main content
A newer version of this page is available. .

FilteredItemsSourceProvider.FilterMode Property

Gets or sets the operator (starts with, contains, etc.) used to compare suggestions in the collection with the entered text.

Namespace: DevExpress.XamarinForms.Editors

Assembly: DevExpress.XamarinForms.Editors.dll

NuGet Package: DevExpress.XamarinForms.Editors

Declaration

public FilterMode FilterMode { get; set; }

Property Value

Type Description
FilterMode

A value that specifies a comparison operator.

Available values:

Name Description
StartsWith

Data items should start with the entered text.

EndsWith

Data items should end with the entered text.

Contains

Data items should contain the entered text.

See Also