__VSFINDERROR Enumeration
Visual Studio 2015
Specifies errors in find operation.
Assembly: Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
| Member name | Description | |
|---|---|---|
| VSFE_Failure | An error occurred. | |
| VSFE_NoError | No error occurred. | |
| VSFE_NotInitialized | Search was not initialized. | |
| VSFE_NotSupported | Options were not supported. | |
| VSFE_Syntax | There was a syntax error in expression |
From textfind.idl:
enum __VSFINDERROR { VSFE_Syntax = -4, VSFE_NotSupported = -3, VSFE_NotInitialized = -2, VSFE_Failure = -1, VSFE_NoError = 0 }; typedef DWORD VSFINDERROR;
Show: