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

ColumnViewOptionsFind.Condition Property

Gets or sets the condition according to which the Data Grid searches for the string entered into the Find Panel.

Namespace: DevExpress.XtraGrid.Views.Base

Assembly: DevExpress.XtraGrid.v24.2.dll

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

#Declaration

[DefaultValue(FilterCondition.Default)]
[DXCategory("Data")]
[XtraSerializableProperty]
public virtual FilterCondition Condition { get; set; }

#Property Value

Type Default Description
FilterCondition Default

Specifies the filter condition.

Available values:

Name Description
Contains

Specifies the Contains comparison operation.

StartsWith

Specifies the StartsWith comparison operation.

Like

Specifies the Like comparison operation.

Default

Specifies the default comparison operation.

Equals

Specifies the Equals comparison operation.

#Property Paths

You can access this nested property as listed below:

Object Type Path to Condition
ColumnView
.OptionsFind .Condition

#Remarks

The Condition property accepts the following values (run the “Find Panel” Demo Center module to test these modes).

  • FilterCondition.Default - inherits the global WindowsFormsSettings.FindPanelCondition property value.

  • FilterCondition.Contains - searches for all cells that contain the specified text, regardless of their position within the cell text.
    condition-contains

  • FilterCondition.StartsWith - searches for cells whose text starts with the searched string.
    condition-startswith

  • FilterCondition.Equals - searches for cells whose text is an exact match with the searched string.

  • FilterCondition.Like - allows users to enter the “%” character that is a wildcard for any number of characters.
    condition-startswith

See Also