Class FilterOperator.String
- Namespace
- MudBlazor
- Assembly
- MudBlazor.dll
Represents filters which are available for string
values.
public static class FilterOperator.String
- Inheritance
-
FilterOperator.String
- Inherited Members
Remarks
You can control case sensitivity of filters by setting the FilterCaseSensitivity property.
Fields
Contains
Find text containing the filter value.
public const string Contains = "contains"
Field Value
Empty
Find text which is null, empty, or whitespace.
public const string Empty = "is empty"
Field Value
EndsWith
Find text which ends with the filter value.
public const string EndsWith = "ends with"
Field Value
Equal
Find text which is the same as the filter value.
public const string Equal = "equals"
Field Value
NotContains
Find text which does not contain the filter value.
public const string NotContains = "not contains"
Field Value
NotEmpty
Find text which is not null, empty, or whitespace.
public const string NotEmpty = "is not empty"
Field Value
NotEqual
Find text which is different from the filter value.
public const string NotEqual = "not equals"
Field Value
StartsWith
Find text which starts with the filter value.
public const string StartsWith = "starts with"