Skip to main content

PdfViewer.ContinueSearchFrom Property

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

Namespace: DevExpress.XtraPdfViewer

Assembly: DevExpress.XtraPdfViewer.v23.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