wpf-devexpress-dot-xpf-dot-grid-e1233494.md
Lists the possible binary filters that the GridControl ‘s column supports.
Namespace : DevExpress.Xpf.Grid
Assembly : DevExpress.Xpf.Grid.v25.2.Core.dll
NuGet Package : DevExpress.Wpf.Grid.Core
[Flags]
public enum AllowedBinaryFilters
<Flags>
Public Enum AllowedBinaryFilters
| 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 properties accept/return AllowedBinaryFilters values:
This enumeration has the FlagsAttribute attribute that allows a bitwise combination of its member values.
This enumeration is used by the ColumnBase.AllowedBinaryFilters property.
See Also