__VSFINDHOW Enumeration

Specifies how to find a match.

Namespace:  Microsoft.VisualStudio.TextManager.Interop
Assembly:  Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)

Syntax

'Declaration
Public Enumeration __VSFINDHOW
public enum __VSFINDHOW
public enum class __VSFINDHOW
type __VSFINDHOW
public enum __VSFINDHOW

Members

Member name Description
VSFH_Ambient Use ambient/default options.
VSFH_SetMatch Search for match at span: set match span and tags.
VSFH_TryMatch Search for match at span: don't change state (current match span, tags).
VSFH_Wrap Wrap around image boundary.

Remarks

COM Signature

From textfind.idl:

enum __VSFINDHOW {
   VSFH_Ambient  = 0x00000000,
   VSFH_Wrap     = 0x00000001,
   VSFH_TryMatch = 0x10000000,
   VSFH_SetMatch = 0x20000000
};
typedef DWORD VSFINDHOW;

See Also

Reference

Microsoft.VisualStudio.TextManager.Interop Namespace