__VSFINDOPTIONS2 Enumeration
Visual Studio 2015
Provides additional members for __VSFINDOPTIONS.
Assembly: Microsoft.VisualStudio.TextManager.Interop.8.0 (in Microsoft.VisualStudio.TextManager.Interop.8.0.dll)
| Member name | Description | |
|---|---|---|
| FR_BlockThread | Blocks the thread during a search. | |
| FR_DoNotUpdateUI | Do not update visual user interface elements. | |
| FR_RegExprLineBreaks | Match line breaks by using regular expressions. |
From textfind2.idl:
enum __VSFINDOPTIONS2 { // FR_SyntaxMask = 0x00003000, FR_RegExprLineBreaks = 0x00004000, // FR_InternalMask = 0x7F000000, FR_BlockThread = 0x20000000, }; typedef DWORD VSFINDOPTIONS2;
Show: