Field DefaultMaxReportExpressionDepth
The default cap on MaxReportExpressionDepth: 256 levels.
public const int DefaultMaxReportExpressionDepth = 256
Returns
- int
- The default cap on : 256 levels.
Remarks
The deepest expression in the Microsoft sample reports nests five levels. The value counts
every operator, not only parentheses, because 1+1+1+… builds a tree as deep as it
is long — and a tree-walking evaluator recurses once per level whether or not the author
wrote a bracket.