__VSFINDOPTIONS2 Enumeration
Provides additional members for __VSFINDOPTIONS.
Namespace: Microsoft.VisualStudio.TextManager.Interop
Assembly: Microsoft.VisualStudio.TextManager.Interop.8.0 (in Microsoft.VisualStudio.TextManager.Interop.8.0.dll)
Syntax
'Declaration
Public Enumeration __VSFINDOPTIONS2
public enum __VSFINDOPTIONS2
public enum class __VSFINDOPTIONS2
type __VSFINDOPTIONS2
public enum __VSFINDOPTIONS2
Members
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. |
Remarks
COM Signature
From textfind2.idl:
enum __VSFINDOPTIONS2 {
// FR_SyntaxMask = 0x00003000,
FR_RegExprLineBreaks = 0x00004000,
// FR_InternalMask = 0x7F000000,
FR_BlockThread = 0x20000000,
};
typedef DWORD VSFINDOPTIONS2;