New to Telerik UI for WinFormsStart a free 30-day trial

Navigation

Updated on May 7, 2026

You can use the PageUp, PageDown, GoToPage methods to navigate through the document programmatically:

C#
private void buttonPageUp_Click(object sender, EventArgs e)
{
    this.radPdfViewer1.PdfViewerElement.PageUp();
}

private void buttonPageDown_Click(object sender, EventArgs e)
{
    this.radPdfViewer1.PdfViewerElement.PageDown();
}

private void buttonGotoPage_Click(object sender, EventArgs e)
{
    this.radPdfViewer1.PdfViewerElement.GoToPage(3);
}

Additionally, you can control the precise scroll position by using the Scroll method which scrolls the view with a specified offset or the ScrollTo method which scrolls the view to an exact position:

Scrolling

C#
private void buttonScroll_Click(object sender, EventArgs e)
{
    this.radPdfViewer1.PdfViewerElement.Scroll(30, 30);
}

private void buttonScrollTo_Click(object sender, EventArgs e)
{
    this.radPdfViewer1.PdfViewerElement.ScrollTo(0, 300);
}

See Also

In this article
See Also
Not finding the help you need?
Contact Support