__VSFINDSTATE Enum
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
C++/CX
public enum class __VSFINDSTATE
enum __VSFINDSTATE
public enum __VSFINDSTATE
type __VSFINDSTATE =
Public Enum __VSFINDSTATE
- Inheritance
-
__VSFINDSTATE
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. |
From textfind.idl:
cpp#
enum __VSFINDSTATE {
VSFS_Error = 0x10000000,
VSFS_Empty = 0x00000000,
VSFS_Start = 0x00000001,
VSFS_Found = 0x00000002,
VSFS_NotFound = 0x00000003,
VSFS_Wrapped = 0x00010000
};
typedef DWORD VSFINDSTATE;
Produkt | Versiounen |
---|---|
Visual Studio SDK | 2015, 2017, 2019, 2022 |