Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Indicates the search position.
Namespace: Microsoft.VisualStudio.TextManager.Interop
Assembly: Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
Syntax
'Declaration
Public Enumeration __VSFINDPOS
public enum __VSFINDPOS
public enum class __VSFINDPOS
type __VSFINDPOS
public enum __VSFINDPOS
Members
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. |
Remarks
COM Signature
From textfind.idl:
enum __VSFINDPOS {
VSFP_Start = 0x00000001,
VSFP_Current = 0x00000002,
VSFP_Wrapped = 0x00010000,
VSFP_ResetCounts = 0x00020000
};
typedef DWORD VSFINDPOS;