__VSFINDSTATE Enumeration

Specifies the state of a Find operation.

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

Syntax

'Declaration
Public Enumeration __VSFINDSTATE
public enum __VSFINDSTATE
public enum class __VSFINDSTATE
type __VSFINDSTATE
public enum __VSFINDSTATE

Members

Member name Description
VSFS_Empty Find was not initialized.
VSFS_Error An error occurred.
VSFS_Found Find was initialized and the last action was Found.
VSFS_NotFound Initialized and the last action was Not Found.
VSFS_Start Find was initialized, and no action was taken.
VSFS_Wrapped Find wrapped around to the start.

Remarks

COM Signature

From textfind.idl:

enum __VSFINDSTATE {
   VSFS_Error    = 0x10000000,
   VSFS_Empty    = 0x00000000,
   VSFS_Start    = 0x00000001,
   VSFS_Found    = 0x00000002, 
   VSFS_NotFound = 0x00000003,
   VSFS_Wrapped  = 0x00010000
};
typedef DWORD VSFINDSTATE;

See Also

Reference

Microsoft.VisualStudio.TextManager.Interop Namespace