Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

PdfViewer.ContinueSearchFrom Property

Gets or sets where the PDF Viewer continues its search after you scroll a document.

Namespace: DevExpress.XtraPdfViewer

Assembly: DevExpress.XtraPdfViewer.v24.2.dll

NuGet Package: DevExpress.Win.PdfViewer

#Declaration

[Browsable(false)]
public PdfContinueSearchFrom ContinueSearchFrom { get; set; }

#Property Value

Type Description
PdfContinueSearchFrom

A PdfContinueSearchFrom enumeration value. The default is CurrentPage.

Available values:

Name Description
LastSearchResult

The PDF Viewer continues its search from its last search result.

CurrentPage

The PDF Viewer continues its search from the current page.

#Remarks

The following code snippet shows how to scroll your document to a specific page and continue your search from this page.

// Specify that your search should always continue from the current page.
pdfViewer1.ContinueSearchFrom = DevExpress.XtraPdfViewer.PdfContinueSearchFrom.CurrentPage;

// Start your search.
pdfViewer1.FindText("text");

// Process the search results.
// ...

// Change the current page.
pdfViewer1.CurrentPageNumber = 100;

// Continue your search.
pdfViewer1.FindText("text");
See Also