Enum SearchOptions
- Namespace
- Alternet.Editor.TextSource
- Assembly
- Alternet.Editor.v10.dll
Defines options for search and replace operations.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
[Flags]
public enum SearchOptions
Fields
AllDocuments = 4096Search is performed in all documents.
BackwardSearch = 8Specifies that search should be executed towards the beginning of text.
CaseSensitive = 1Specifies that search should be case sensitive.
CurrentProject = 8192Search is performed in current project.
CycledSearch = 1024Search until current position is reached.
DisplayIncrementalSearchDiaog = 32768Incremental search is performed with dialog.
EntireScope = 32Specifies that search should start from the beginning of text.
EntireSolution = 16384Search is performed in entire solution.
FindSelectedText = 512Specifies that selected text of the active document should be used as text to find.
FindTextAtCursor = 128Specifies that text at the current position of the active document should be used as text to find.
None = 0Specifies that no flags are in effect.
PromptOnReplace = 256Specifies that confirm dialog should appear before replacing found text.
RegularExpressions = 4Specifies that text to find represents notations for patterns of text rather than the literal character.
SearchHiddenText = 64Specifies that the search includes invisible text, such as an collapsed section.
SelectionOnly = 16Searches only within the selected text in the currently active document.
SilentSearch = 2048Search until current position is reached.
WholeWordsOnly = 2Searches only for whole words, rather than matching the text as it occurs within words.