vsFindOptions Enumeration
Represents the behavior of the ReplacePattern method, such as how to search, where to begin the search, whether to search forward or backward, and the case sensitivity.
Namespace: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Syntax
'Declaration
<GuidAttribute("A457303F-D058-4415-A2B4-A81B148C7689")> _
Public Enumeration vsFindOptions
'Usage
Dim instance As vsFindOptions
[GuidAttribute("A457303F-D058-4415-A2B4-A81B148C7689")]
public enum vsFindOptions
[GuidAttribute(L"A457303F-D058-4415-A2B4-A81B148C7689")]
public enum class vsFindOptions
public enum vsFindOptions
Members
Member name | Description | |
---|---|---|
vsFindOptionsNone | No matching. | |
vsFindOptionsMatchWholeWord | Matches whole word in search. | |
vsFindOptionsMatchCase | Matches case of word in search. | |
vsFindOptionsRegularExpression | Matches regular expression. | |
vsFindOptionsBackwards | Searches backward from current point. | |
vsFindOptionsFromStart | Begins search at beginning of document. | |
vsFindOptionsMatchInHiddenText | Looks for text matches in hidden text as well as nonhidden text. The vsFindOptionsMatchInHiddenText constant value does not apply to the FindPattern method, because it searches all text, including hidden text. | |
vsFindOptionsWildcards | Uses wildcards in string search. | |
vsFindOptionsSearchSubfolders | Includes subfolders in word search. | |
vsFindOptionsKeepModifiedDocumentsOpen | Does not close documents that have been modified by the search. |