__VSFINDHOW Enumeration

 

Specifies how to find a match.

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

public enum __VSFINDHOW

Member nameDescription
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.

From textfind.idl:

enum __VSFINDHOW {
   VSFH_Ambient  = 0x00000000,
   VSFH_Wrap     = 0x00000001,
   VSFH_TryMatch = 0x10000000,
   VSFH_SetMatch = 0x20000000
};
typedef DWORD VSFINDHOW;
Return to top
Show: