ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Data.ExpressionInfo Assembly / GrapeCity.Enterprise.Data.Expressions Namespace / CompoundExpressionInfo Class / CompoundExpressionInfo Constructor
The string representation of the compound expression. If null or empty, it will be generated automatically.
The expected result type of the expression evaluation.
The ExpressionInfo for the left side of the expression. This is null for unary expressions.
The ExpressionInfo for the right side of the expression.
The type of operator that defines the relationship between infoLeft and infoRight.

In This Topic
CompoundExpressionInfo Constructor
In This Topic
Initializes a new instance of the CompoundExpressionInfo class with the specified parameters
Syntax
'Declaration
 
Public Function New( _
   ByVal expression As String, _
   ByVal resultType As ExpressionResultType, _
   ByVal infoLeft As ExpressionInfo, _
   ByVal infoRight As ExpressionInfo, _
   ByVal operatorType As OperatorType _
)
 

Parameters

expression
The string representation of the compound expression. If null or empty, it will be generated automatically.
resultType
The expected result type of the expression evaluation.
infoLeft
The ExpressionInfo for the left side of the expression. This is null for unary expressions.
infoRight
The ExpressionInfo for the right side of the expression.
operatorType
The type of operator that defines the relationship between infoLeft and infoRight.
See Also