__VSFINDERROR Enum
Definition
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
public enum class __VSFINDERROR
enum __VSFINDERROR
public enum __VSFINDERROR
type __VSFINDERROR =
Public Enum __VSFINDERROR
- Inheritance
-
__VSFINDERROR
Fields
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. |
Remarks
COM Signature
From textfind.idl:
enum __VSFINDERROR {
VSFE_Syntax = -4,
VSFE_NotSupported = -3,
VSFE_NotInitialized = -2,
VSFE_Failure = -1,
VSFE_NoError = 0
};
typedef DWORD VSFINDERROR;