How to: Load a PDF Document from a File
The following example illustrates how to load a PDF file into the PdfViewer control. Drop the PdfViewer control onto the form, create a Ribbon via the PdfViewer’s smart tag and call the PdfViewer.LoadDocument method.
using System;
using System.Windows.Forms;
namespace PdfViewerSample {
public partial class Form1 : Form {
public Form1() {
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e) {
this.pdfViewer1.LoadDocument(@"..\..\Report.pdf");
}
}
}
See Also