__VSFINDPOS Enumeration
Visual Studio 2015
Indicates the search position.
Assembly: Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
| Member name | Description | |
|---|---|---|
| VSFP_Current | The current position. | |
| VSFP_ResetCounts | Clear the match counter. | |
| VSFP_Start | The start of the search. | |
| VSFP_Wrapped | The search should wrap to the start. |
From textfind.idl:
enum __VSFINDPOS { VSFP_Start = 0x00000001, VSFP_Current = 0x00000002, VSFP_Wrapped = 0x00010000, VSFP_ResetCounts = 0x00020000 }; typedef DWORD VSFINDPOS;
Show: