__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
'Usage
Dim instance As __VSFINDSTATE
public enum __VSFINDSTATE
public enum class __VSFINDSTATE
public enum __VSFINDSTATE
Members
Member name | Description | |
---|---|---|
VSFS_Error | An error occurred. | |
VSFS_Empty | Find was not initialized. | |
VSFS_Start | Find was initialized, and no action taken. | |
VSFS_Found | Find was initialized and last action found. | |
VSFS_NotFound | Initialized and last action not found. | |
VSFS_Wrapped | Find wrapped around end of doc. |
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;