__VSFINDSTATE Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Name | Value | Description |
---|---|---|
VSFS_Empty | 0 | Find was not initialized. |
VSFS_Start | 1 | Find was initialized, and no action was taken. |
VSFS_Found | 2 | Find was initialized and the last action was Found. |
VSFS_NotFound | 3 | Initialized and the last action was Not Found. |
VSFS_Wrapped | 65536 | Find wrapped around to the start. |
VSFS_Error | 268435456 | An error occurred. |
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;