ClassCustomFilterCriteria
Defines a single comparison criterion for CustomFilter, specifying a relational operator and target value.
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Model.Filtering
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
public class CustomFilterCriteria
Inheritance: objectCustomFilterCriteria
Constructors
CustomFilterCriteria(ComparisonOperator, string)
Initializes a new instance of the CustomFilterCriteria class.
Declaration
public CustomFilterCriteria(ComparisonOperator comparisonOperator, string filterValue)
Parameters
comparisonOperator
The comparison operator.
filterValue
The filter value to which the cell value will be compared.
Properties
ComparisonOperator
Gets the relational operator used to compare cell values (e.g., equals, greater than, less than).
Declaration
public ComparisonOperator ComparisonOperator { get; }
Property Value
The comparison operator.
FilterValue
Gets the target value against which cell values are compared, stored as a string but parsed to appropriate types.
Declaration
public string FilterValue { get; }
Property Value
The filter value.
Methods
GetHashCode()
Serves as a hash function for a particular type.