Enum LlExpressionPart
- Namespace
- combit.Reporting
- Assembly
- combit.ListLabel31.CrossPlatform.dll
Represents the parts of an expression used with native filter translation.
public enum LlExpressionPart
Fields
BinaryOperatorAdd = 7Represents the binary addition operator in the expression.
BinaryOperatorAddDateTime = 13Represents the binary operator used to add a time span to a date/time value in the expression.
BinaryOperatorAppend = 12Represents the binary append operator, typically used for string concatenation, in the expression.
BinaryOperatorDivide = 10Represents the binary division operator in the expression.
BinaryOperatorModulo = 11Represents the binary modulo operator in the expression.
BinaryOperatorMultiply = 9Represents the binary multiplication operator in the expression.
BinaryOperatorSubtract = 8Represents the binary subtraction operator in the expression.
Boolean = 1Represents a boolean literal value in the expression.
Date = 4Represents a date literal value in the expression.
Field = 24Represents a field or property reference within the expression.
Function = 23Represents a function call within the expression.
Initialize = 25Represents an initialization operation within the expression.
Number = 3Represents a numeric literal value in the expression.
RelationAnd = 16Represents the logical AND operator in the expression.
RelationEqual = 17Represents the equality relation operator in the expression.
RelationGreaterThan = 19Represents the greater-than relation operator in the expression.
RelationGreaterThanOrEqual = 20Represents the greater-than-or-equal-to relation operator in the expression.
RelationLessThan = 21Represents the less-than relation operator in the expression.
RelationLessThanOrEqual = 22Represents the less-than-or-equal-to relation operator in the expression.
RelationNotEqual = 18Represents the inequality relation operator in the expression.
RelationOr = 15Represents the logical OR operator in the expression.
RelationXor = 14Represents the logical exclusive OR (XOR) operator in the expression.
Text = 2Represents a text (string) literal value in the expression.
UnaryOperatorFalseAsArgument = 28Represents a unary operator yielding a false value when used as an argument.
UnaryOperatorNegation = 6Represents a unary negation operator (logical or arithmetic negation) in the expression.
UnaryOperatorSign = 5Represents a unary operator used to denote a sign (e.g., '+' or '-') in the expression.
UnaryOperatorTrue = 26Represents a unary operator that yields a true boolean value.
UnaryOperatorTrueAsArgument = 27Represents a unary operator yielding a true value when used as an argument.
Unknown = 0Indicates that the expression part is unknown or not specified.