Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
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;