Skip to main content

RepositoryItemTokenEdit.PopupFilterMode Property

Gets or sets how items within this TokenEdit‘s popup are filtered.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[DefaultValue(TokenEditPopupFilterMode.StartWith)]
[DXCategory("Behavior")]
public TokenEditPopupFilterMode PopupFilterMode { get; set; }

Property Value

Type Default Description
DevExpress.XtraEditors.TokenEditPopupFilterMode StartWith

A DevExpress.XtraEditors.TokenEditPopupFilterMode enumerator value that specifies how items within this TokenEdit‘s popup are filtered.

Remarks

The PopupFilterMode property sets the rule based on which items in this TokenEdit control’s popup are filtered as an end-user enters text to the editor.

  • StartWith mode specifies that the editor popup displays only those tokens whose caption starts with the same character(s) as an end-user has entered;
  • Contains mode specifies that the editor popup displays all tokens whose captions contain the character(s) an end-user has entered.

The figure below illustrates the difference between the two PopupFilterMode modes.

TokenEdit - PopupFilterMode

See Also