PageCountMode Enumeration
Represents values that control whether to calculate the actual page count or use an estimate.
Namespace: Microsoft.Reporting.WinForms
Assembly: Microsoft.ReportViewer.WinForms (in Microsoft.ReportViewer.WinForms.dll)
Syntax
public enum PageCountMode
public enum class PageCountMode
type PageCountMode
Public Enumeration PageCountMode
Members
Member name | Description | |
---|---|---|
Actual | Calculate the actual page count for the report. |
|
Estimate | Provide an estimate of the page count for the report instead of calculating the actual page count. |
Remarks
Pagination in a processed report occurs when the report is rendered. Until the report is rendered, the total page count is unknown.
Rendering a report using the Estimate mode can help improve the performance of report rendering. You can change the PageCountMode property of ReportViewer to control the page count mode it uses when rendering a report in the report area. To specify the page count mode when you render a report programmatically, use Render. You can then use the GetTotalPages method to retrieve the total number of pages in the rendered report.
Note
Rendering in Estimate mode can be more performant than Actual mode
Examples
Legacy Code Example
See Also
Microsoft.Reporting.WinForms Namespace
Return to top