TextSearchSearchMode Enumeration |
Search modes that control how searching is conducted.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public enum TextSearchSearchMode
Public Enumeration TextSearchSearchMode
public enum class TextSearchSearchMode
pdftron.PDF.TextSearchSearchMode = function();
pdftron.PDF.TextSearchSearchMode.createEnum('pdftron.PDF.TextSearchSearchMode', false);
Members
| Member name | Value | Description |
---|
| e_reg_expression | 1 | use regular expressions |
| e_case_sensitive | 2 | match case-sensitively |
| e_whole_word | 4 | match the entire word |
| e_search_up | 8 | search upward (from the end of the file and from the bottom of a page) |
| e_page_stop | 16 | tells the search process to return when each page is finished; this is
useful when a user needs Run() to return periodically so that certain
things (e.g., UI) can be updated from time to time. |
| e_highlight | 32 | tells the search process to compute Highlight information. |
| e_ambient_string | 64 | tells the search process to compute the ambient string of the found pattern.
This is useful if a user wants to examine or display what surrounds the
found pattern. |
| e_raw_text_search | 128 | tells the search process to refrain from replacing newlines with spaces |
| e_search_using_zorder | 256 | tells the search process to use Z-order as reading order for text |
See Also