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

ColumnBase.AllowedBinaryFilters Property

Gets or sets possible binary filters that the GridControl‘s column supports.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v19.1.Core.dll

Declaration

public AllowedBinaryFilters? AllowedBinaryFilters { get; set; }

Property Value

Type Description
Nullable<AllowedBinaryFilters>

AllowedBinaryFilters

Available values:

Show 14 items
Name Description
None

There are no allowed binary filters.

Equals

Specifies the Equals filter criteria.

DoesNotEqual

Specifies the Does Not Equal filter criteria.

Greater

Specifies the Greater filter criteria.

GreaterOrEqual

Specifies the Greater Or Equal filter criteria.

Less

Specifies the Less filter criteria.

LessOrEqual

Specifies the Less Or Equal filter criteria.

Contains

Specifies the Contains filter criteria.

DoesNotContain

Specifies the Does Not Contain filter criteria.

BeginsWith

Specifies the Begins With filter criteria.

EndsWith

Specifies the Ends With filter criteria.

Like

Specifies the Like filter criteria.

NotLike

Specifies the Not Like filter criteria.

All

All binary filters are allowed.

The following code snippets (auto-collected from DevExpress Examples) contain references to the AllowedBinaryFilters property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also