__VSFINDERROR Enumeration

 

Specifies errors in find operation.

Namespace:   Microsoft.VisualStudio.TextManager.Interop
Assembly:  Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)

public enum __VSFINDERROR

Member nameDescription
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;
Return to top
Show: