DocumentViewerMatchOptions Enumeration
Defines possible match options for text search in the document viewer.
Namespace: GleamTech.DocumentUltimate.AspNet.UIAssembly: GleamTech.DocumentUltimate (in GleamTech.DocumentUltimate.dll) Version: 6.9.6
[FlagsAttribute]
public enum DocumentViewerMatchOptions
<FlagsAttribute>
Public Enumeration DocumentViewerMatchOptions
None | No specific match option. |
MatchAnyWord |
The search should match the term as a whole or match any word in the term separately
(e.g. "bicycle bells" or "bicycle" or "bells").
|
MatchCase |
The search should be case sensitive, i.e the found text must match the case of the search term.
|
MatchWholeWord |
The search should match the whole word only,
i.e the found text must be a whole word (surrounded by a non-word character).
(e.g. "doc" matches " doc " or ".doc" but not "document").
|
UseWildcard |
The search should treat * (asterisk) character in the search term as a wildcard.
Wildcard * matches zero or more characters.
|