EnumPageMode
Specifies the page display mode options for the HTML5 WebForms ReportViewer control to determine how report pages are presented and navigated. Used to configure whether the viewer displays reports in continuous scrolling mode with progressive loading or single page mode for focused viewing.
Definition
Namespace:Telerik.ReportViewer.Html5.WebForms
Assembly:Telerik.ReportViewer.Html5.WebForms.dll
Syntax:
public enum PageMode
Fields
ContinuousScroll
Displays multiple report pages in a continuous scrolling view with on-demand page loading for improved performance and seamless navigation.
Declaration
[EnumMember(Value = "CONTINUOUS_SCROLL")]
ContinuousScroll = 0
Field Value
Remarks
Enables seamless scrolling through large reports by progressively loading additional pages as needed, optimizing memory usage and user experience.
SinglePage
Displays only one report page at a time within the viewer area for focused page-by-page viewing and navigation.
Declaration
[EnumMember(Value = "SINGLE_PAGE")]
SinglePage = 1
Field Value
Remarks
Provides traditional page navigation with discrete page display for precise page control and optimal performance with smaller memory footprint.