CustomFilterCriteria
Class
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:
C#
public class CustomFilterCriteria
Inheritance: objectCustomFilterCriteria
Constructors
Initializes a new instance of the CustomFilterCriteria class.
C#
public CustomFilterCriteria(ComparisonOperator comparisonOperator, string filterValue)
The comparison operator.
filterValuestringThe filter value to which the cell value will be compared.
Methods
Properties
Gets the relational operator used to compare cell values (e.g., equals, greater than, less than).
C#
public ComparisonOperator ComparisonOperator { get; }
The comparison operator.
Gets the target value against which cell values are compared, stored as a string but parsed to appropriate types.
C#
public string FilterValue { get; }
The filter value.