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

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.v18.2.dll

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