Property MaxReportSubreportDepth
MaxReportSubreportDepth
Gets or sets how deep subreports may nest inside one another, or null for the processor's own ceiling.
On by default (DefaultMaxReportSubreportDepth). A report that names itself as its subreport recurses once per level, each level a whole report run. Null does not remove the bound: report processing never nests deeper than its fixed ceiling of 64, because the failure past it is a stack overflow, which nothing can catch.
public int? MaxReportSubreportDepth { get; set; }
Property Value
- int?
Exceptions
- ArgumentOutOfRangeException
The value is not positive.