Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

FilterPopupExcelEventArgs.ShowLikeFilters Property

Gets or sets whether to show the pattern-matching (Is Like, Is Not Like) operators for string values.

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v24.2.dll

NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

#Declaration

public bool ShowLikeFilters { get; set; }

#Property Value

Type Description
Boolean

true, to show the pattern-matching operators; otherwise, false.

#Remarks

The Is Like and Is Not Like operators allow end users to search for a specified pattern:

  • % — the percent sign replaces zero, one, or multiple characters;
  • _ — the underscore replaces a single character.

If the OptionsColumnFilter.PopupExcelFilterTextFilters property is set to AllFilters, the Excel style pop-up filter menu contains the pattern-matching (Is Like, Is Not Like) and relational (Greater Than, etc.) operators in the Text Filters tab.

ShowLikeFilters

The ShowLikeFilters property allows you to show/hide the pattern-matching operators.

See Also