__VSFINDERROR Enumeration
Specifies errors in find operation.
Namespace: Microsoft.VisualStudio.TextManager.Interop
Assembly: Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
Syntax
'Declaration
Public Enumeration __VSFINDERROR
public enum __VSFINDERROR
public enum class __VSFINDERROR
type __VSFINDERROR
public enum __VSFINDERROR
Members
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 |
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;