__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)

public enum __VSFINDSTATE

Member nameDescription
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.

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