Table of Contents

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 = 0

Substring match (default for text columns).

EndsWith = 2

Suffix match (text only).

Equals = 3

Exact equality.

GreaterOrEqual = 7

Greater than or equal (numeric / date).

GreaterThan = 5

Strictly greater than (numeric / date).

LessOrEqual = 8

Less than or equal (numeric / date).

LessThan = 6

Strictly less than (numeric / date).

NotEquals = 4

Inequality.

StartsWith = 1

Prefix match (text only).