Class Filter
Inheritance
Namespace: Telerik.Reporting
Assembly: Telerik.Reporting.dll
Syntax
public sealed class Filter : ICloneable, INotifyPropertyChanged
Constructors
Filter()
Internal use only
Declaration
public Filter()
Filter(String, FilterOperator, String)
Internal use only
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()
TODO: Add documentation.
Declaration
public object Clone()
Returns
|
System.Object
|
Equals(Object)
TODO: Add documentation.
Declaration
public override bool Equals(object obj)
Parameters
|
System.Object
obj
|
Returns
|
System.Boolean
|
Overrides
Equals(Filter)
TODO: Add documentation.
Declaration
public bool Equals(Filter other)
Parameters
|
Filter
other
|
Returns
|
System.Boolean
|
GetHashCode()
TODO: Add documentation.
Declaration
public override int GetHashCode()
Returns
|
System.Int32
|
Overrides
ToString()
TODO: Add documentation.
Declaration
public override string ToString()
Returns
|
System.String
|
Overrides
Events
PropertyChanged
Internal use only
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
|
System.ComponentModel.PropertyChangedEventHandler
|