ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Data.ExpressionInfo Assembly / GrapeCity.Enterprise.Data.Expressions Namespace / ExpressionInfo Class / Children Method

In This Topic
    Children Method (ExpressionInfo)
    In This Topic
    Returns the subexpressions that make up the given expression.
    Syntax
    'Declaration
     
    Public Overridable Function Children() As IEnumerable(Of ExpressionInfo)
    public virtual IEnumerable<ExpressionInfo> Children()
    Remarks
    In most cases, if an expression is not a constant, it is composed of other smaller expressions. These could be the left and right operands for a binary expression, arguments to a function, etc. Subexpressions, in turn, can also consist of expressions. This function returns only expressions at the first level of nesting.
    See Also