FilterPartType
Enum
Defines the parts of the filtering expression that a FilterPartViewModel can represent.
Definition
Namespace:Telerik.Windows.Controls.Data.DataFilterView
Assembly:Telerik.Windows.Controls.Data.dll
Syntax:
C#
public enum FilterPartType
Fields
Defines a FilterPartViewModel representing a closing bracket.
C#
ClosingBracket = 1
Defines a FilterPartViewModel representing the LogicalOperator inside an expression.
C#
LogicalOperator = 5
Defines a FilterPartViewModel representing the Member inside an expression.
C#
Member = 2
Defines a FilterPartViewModel representing an opening bracket.
C#
OpeningBracket = 0
Defines a FilterPartViewModel representing the Operator inside an expression.
C#
Operator = 3
Defines a FilterPartViewModel representing the Value inside an expression.
C#
Value = 4