Enum ColumnFilterOperator
- Namespace
- BlazOrbit.Components
- Assembly
- BlazOrbit.dll
Comparison operator applied by a per-column filter. The filter text is interpreted according to the column's data category (text vs numeric vs date) — operators that don't apply to a category collapse to Contains for safety.
public enum ColumnFilterOperator
Fields
Contains = 0Substring match (default for text columns).
EndsWith = 2Suffix match (text only).
Equals = 3Exact equality.
GreaterOrEqual = 7Greater than or equal (numeric / date).
GreaterThan = 5Strictly greater than (numeric / date).
LessOrEqual = 8Less than or equal (numeric / date).
LessThan = 6Strictly less than (numeric / date).
NotEquals = 4Inequality.
StartsWith = 1Prefix match (text only).