PageMode
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
Displays multiple report pages in a continuous scrolling view with on-demand page loading for improved performance and seamless navigation.
[EnumMember(Value = "CONTINUOUS_SCROLL")]
ContinuousScroll = 0
Enables seamless scrolling through large reports by progressively loading additional pages as needed, optimizing memory usage and user experience.
Displays only one report page at a time within the viewer area for focused page-by-page viewing and navigation.
[EnumMember(Value = "SINGLE_PAGE")]
SinglePage = 1
Provides traditional page navigation with discrete page display for precise page control and optimal performance with smaller memory footprint.