Class Filter
Inheritance
Namespace: Telerik.Reporting
Assembly: Telerik.Reporting.dll
Syntax
public sealed class Filter : ICloneable, INotifyPropertyChanged
Constructors
Filter()
Declaration
public Filter()
Filter(String, FilterOperator, String)
Declaration
public Filter(string expression, FilterOperator operator, string value)
Parameters
System.String
expression
|
FilterOperator
operator
|
System.String
value
|
Properties
Expression
Declaration
public string Expression { get; set; }
Property Value
System.String
|
Operator
Value
If the Value starts with the equal (=) sign, it will be evaluated as an expression otherwise - as string value. For ex. if the value is 7 it is interpreted as the string "7"; To compare a numeric expression with the number 7, use the expression syntax which begins with the equal sign: =7.
Declaration
public string Value { get; set; }
Property Value
System.String
|
Methods
Clone()
Declaration
public object Clone()
Returns
System.Object
|
Equals(Object)
Declaration
public override bool Equals(object obj)
Parameters
System.Object
obj
|
Returns
System.Boolean
|
Overrides
Equals(Filter)
GetHashCode()
Declaration
public override int GetHashCode()
Returns
System.Int32
|
Overrides
ToString()
Declaration
public override string ToString()
Returns
System.String
|
Overrides
Events
PropertyChanged
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
System.ComponentModel.PropertyChangedEventHandler
|