







Search modes that control how searching is conducted.
Namespace: PDFTron.SilverDox.Documents.Text
Assembly: SilverDox (in SilverDox.dll) Version: 1.2.4413.29010
Syntax
C# |
---|
public enum SearchModes |
Visual Basic |
---|
Public Enumeration SearchModes |
Visual C++ |
---|
public enum class SearchModes |
Members
Member name | Value | Description | |
---|---|---|---|
None | 0 | Default flag, does not alter search mode. | |
CaseSensitive | 1 | If set, the found text must match the case of the search term. | |
WholeWord | 2 | If set, the found text must be a whole word (preceeded and followed by a non-alphabetical character, or in the case of a number, a non-numerical character. | |
SearchUp | 4 | If set, the document pages will be searched in descending order, from bottom to top. | |
PageStop | 8 | If set, the search will return with a result code of Page at the end of every page. Useful for updating the UI. | |
ProvideQuads | 16 | If set, the bounding box the found term will be included. Useful for highlighting text and positioning the page. | |
AmbientString | 32 | If set, the characters surrounding the found term will be included. This gives context to the search result may be useful when providing a list of search results. |