__VSFINDHOW Enumeration
Visual Studio 2015
Specifies how to find a match.
Assembly: Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
| Member name | Description | |
|---|---|---|
| VSFH_Ambient | Use ambient/default options. | |
| VSFH_SetMatch | Search for match at span: set match span and tags. | |
| VSFH_TryMatch | Search for match at span: don't change state (current match span, tags). | |
| VSFH_Wrap | Wrap around image boundary. |
From textfind.idl:
enum __VSFINDHOW { VSFH_Ambient = 0x00000000, VSFH_Wrap = 0x00000001, VSFH_TryMatch = 0x10000000, VSFH_SetMatch = 0x20000000 }; typedef DWORD VSFINDHOW;
Show: