Back to Devexpress

ITreeListDataColumn.FilterRowOperatorType Property

blazor-devexpress-dot-blazor-dot-itreelistdatacolumn-b53a16ec.md

latest2.3 KB
Original Source

ITreeListDataColumn.FilterRowOperatorType Property

Specifies the initial operator type used to create a filter condition based on the filter row value.

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

csharp
[DefaultValue(TreeListFilterRowOperatorType.Default)]
TreeListFilterRowOperatorType FilterRowOperatorType { get; set; }

Property Value

TypeDefaultDescription
TreeListFilterRowOperatorTypeDefault

An enumeration value.

|

Available values:

NameDescription
Default

Uses the Contains operator type for columns bound to the String data type; Equals in other cases.

| | Equal |

Selects records that are equal to the entered value.

| | NotEqual |

Selects records that are not equal to the entered value.

| | StartsWith |

Selects records that start with the entered string.

| | EndsWith |

Selects records that end with the entered string.

| | Contains |

Selects records that contain the entered string.

| | Less |

Selects records that are less than the entered value. String values are compared based on their alphabetical order.

| | LessOrEqual |

Selects records that are less than the entered value or equal to it. String values are compared based on their alphabetical order.

| | Greater |

Selects records that are greater than the entered value. String values are compared based on their alphabetical order.

| | GreaterOrEqual |

Selects records that are greater than the entered value or equal to it. String values are compared based on their alphabetical order.

|

Remarks

Refer to the FilterRowOperatorType property description for additional information and an example.

See Also

ITreeListDataColumn Interface

ITreeListDataColumn Members

DevExpress.Blazor Namespace