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 |
---|---|
Pdf |
A Pdf |
Available values:
Name | Description |
---|---|
Last |
The PDF Viewer continues its search from its last search result. |
Current |
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");