Expand Minimize
This topic has not yet been rated - Rate this topic

__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
public enum __VSFINDSTATE
public enum __VSFINDSTATE
 Member nameDescription
VSFS_EmptyFind was not initialized. 
VSFS_ErrorAn error occurred. 
VSFS_FoundFind was initialized and last action found. 
VSFS_NotFoundInitialized and last action not found. 
VSFS_StartFind was initialized, and no action taken. 
VSFS_WrappedFind wrapped around end of doc. 

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;
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.