TextSearch.SearchModes Enumeration

PDFTron SilverDox SDK

Collapse imageExpand ImageCopy imageCopyHover image
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 nameValueDescription
None0 Default flag, does not alter search mode.
CaseSensitive1 If set, the found text must match the case of the search term.
WholeWord2 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.
SearchUp4 If set, the document pages will be searched in descending order, from bottom to top.
PageStop8 If set, the search will return with a result code of Page at the end of every page. Useful for updating the UI.
ProvideQuads16 If set, the bounding box the found term will be included. Useful for highlighting text and positioning the page.
AmbientString32 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.

See Also