PDFSerarchTextInput Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
PDF Search Text
public class PDFSerarchTextInput
type PDFSerarchTextInput = class
Public Class PDFSerarchTextInput
- Inheritance
-
PDFSerarchTextInput
Constructors
| Name | Description |
|---|---|
| PDFSerarchTextInput() | |
Properties
| Name | Description |
|---|---|
| Async |
Set async to true for long processes to run in the background, API will then return a jobId which you can use with JobCheck module to check the status of the process and retrieve the output while you can proceed with other tasks without waiting for this process to finish. |
| Inline | |
| Name |
name |
| Pages |
Comma-separated list of page indices (or ranges) to process. IMPORTANT: the very first page starts at 0 (zero). To set a range use the dash -, for example: 0,2-5,7-. To set a range from index to the last page use range like this: 2- (from page #3 as the index starts at zero and till the of the document) for ALL pages just leave this param empty. Example: 0,2-5,7- means the first page, then the 3rd page to the 6th page, and then the range from the 8th (index = 7) page till the end of the document, The input must be in string format. |
| Password |
Password of the PDF file |
| Profiles |
Use this parameter to set additional configurations for fine-tuning and extra options. Explore PDF.co knowledgebase (https://developer.pdf.co/api/profiles/index.html) for profile examples. |
| RegexSearch | |
| SearchString |
Text to search can support regular expressions if you set the "Regex Search" parameter to true. |
| Url |
URL to the source file. Supports links from Google Drive, Dropbox, and PDF.co built-in files storage. |
| WordMatchingMode |
Values can be either ‘SmartMatch’, ‘ExactMatch’, or ‘None’. |