DocumentViewerBase.ShowPage(IPage) Method
In This Article
Shows the specified page in the Document Viewer.
Namespace: DevExpress.DocumentView.Controls
Assembly: DevExpress.Utils.v24.2.dll
NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core
#Declaration
#Parameters
Name | Type | Description |
---|---|---|
page | IPage | An object implementing the IPage interface. (Typically, this is a Page object.) |
#Remarks
The following example demonstrates the ShowPage property in action.
using System;
using System.Windows.Forms;
// ...
private void Form1_Load(object sender, EventArgs e) {
// Create a report and assign it to the Document Viewer instance.
XtraReport1 report = new XtraReport1();
this.documentViewer1.DocumentSource = report;
// Create a paginated report document.
report.CreateDocument(false);
// Show the document's fourth page in the Document Viewer.
this.documentViewer1.ShowPage(report.PrintingSystem.Pages[3]);
}
See Also