windowsforms-devexpress-dot-xtrapdfviewer-dot-pdfviewer-5b7dfff6.md
Gets or sets where the PDF Viewer continues its search after you scroll a document.
Namespace : DevExpress.XtraPdfViewer
Assembly : DevExpress.XtraPdfViewer.v25.2.dll
NuGet Package : DevExpress.Win.PdfViewer
[Browsable(false)]
public PdfContinueSearchFrom ContinueSearchFrom { get; set; }
<Browsable(False)>
Public Property ContinueSearchFrom As PdfContinueSearchFrom
| 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.
|
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");
' 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