Table of Contents

Class FilterOperator.Number

Namespace
MudBlazor
Assembly
MudBlazor.dll

Represents filters which are available for numeric values.

public static class FilterOperator.Number
Inheritance
FilterOperator.Number
Inherited Members

Remarks

Numeric filters support all numeric types, including int, double, decimal, long, short, sbyte, byte, ulong, ushort, uint, float and BigInteger.

Fields

Empty

Find null values.

public const string Empty = "is empty"

Field Value

string

Equal

Find numbers equal to the filter value.

public const string Equal = "="

Field Value

string

GreaterThan

Find numbers larger than the filter value.

public const string GreaterThan = ">"

Field Value

string

GreaterThanOrEqual

Find numbers larger than, or equal to, the filter value.

public const string GreaterThanOrEqual = ">="

Field Value

string

LessThan

Find numbers smaller than the filter value.

public const string LessThan = "<"

Field Value

string

LessThanOrEqual

Find numbers smaller than, or equal to, the filter value.

public const string LessThanOrEqual = "<="

Field Value

string

NotEmpty

Find values which are not null.

public const string NotEmpty = "is not empty"

Field Value

string

NotEqual

Find numbers different from the filter value.

public const string NotEqual = "!="

Field Value

string