__VSFINDERROR Enum
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies errors in find operation.
public enum class __VSFINDERROR
C++/CX
public enum class __VSFINDERROR
enum __VSFINDERROR
public enum __VSFINDERROR
type __VSFINDERROR =
Public Enum __VSFINDERROR
- Inheritance
-
__VSFINDERROR
Name | Value | Description |
---|---|---|
VSFE_Syntax | -4 | There was a syntax error in expression |
VSFE_NotSupported | -3 | Options were not supported. |
VSFE_NotInitialized | -2 | Search was not initialized. |
VSFE_Failure | -1 | An error occurred. |
VSFE_NoError | 0 | No error occurred. |
From textfind.idl:
cpp#
enum __VSFINDERROR {
VSFE_Syntax = -4,
VSFE_NotSupported = -3,
VSFE_NotInitialized = -2,
VSFE_Failure = -1,
VSFE_NoError = 0
};
typedef DWORD VSFINDERROR;
Product | Versions |
---|---|
Visual Studio SDK | 2015, 2017, 2019, 2022 |