__VSFINDPOS 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.
Indicates the search position.
public enum class __VSFINDPOS
public enum class __VSFINDPOS
enum __VSFINDPOS
public enum __VSFINDPOS
type __VSFINDPOS =
Public Enum __VSFINDPOS
- Inheritance
-
__VSFINDPOS
Fields
Name | Value | Description |
---|---|---|
VSFP_Start | 1 | The start of the search. |
VSFP_Current | 2 | The current position. |
VSFP_Wrapped | 65536 | The search should wrap to the start. |
VSFP_ResetCounts | 131072 | Clear the match counter. |
Remarks
COM Signature
From textfind.idl:
enum __VSFINDPOS {
VSFP_Start = 0x00000001,
VSFP_Current = 0x00000002,
VSFP_Wrapped = 0x00010000,
VSFP_ResetCounts = 0x00020000
};
typedef DWORD VSFINDPOS;