Back to Devexpress

AllowedBinaryFilters Enum

wpf-devexpress-dot-xpf-dot-grid-e1233494.md

latest2.1 KB
Original Source

AllowedBinaryFilters Enum

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

Declaration

csharp
[Flags]
public enum AllowedBinaryFilters
vb
<Flags>
Public Enum AllowedBinaryFilters

Members

NameDescription
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:

Remarks

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

DevExpress.Xpf.Grid Namespace