__VSFINDSTATE Enum

Definition

Specifies the state of a Find operation.

public enum class __VSFINDSTATE
public enum class __VSFINDSTATE
enum __VSFINDSTATE
public enum __VSFINDSTATE
type __VSFINDSTATE = 
Public Enum __VSFINDSTATE
Inheritance
__VSFINDSTATE

Fields

VSFS_Empty 0

Find was not initialized.

VSFS_Error 268435456

An error occurred.

VSFS_Found 2

Find was initialized and the last action was Found.

VSFS_NotFound 3

Initialized and the last action was Not Found.

VSFS_Start 1

Find was initialized, and no action was taken.

VSFS_Wrapped 65536

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;  

Applies to