__VSFINDHOW Enum
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies how to find a match.
public enum class __VSFINDHOW
C++/CX
public enum class __VSFINDHOW
enum __VSFINDHOW
public enum __VSFINDHOW
type __VSFINDHOW =
Public Enum __VSFINDHOW
- Inheritance
-
__VSFINDHOW
Name | Value | Description |
---|---|---|
VSFH_Ambient | 0 | Use ambient/default options. |
VSFH_Wrap | 1 | Wrap around image boundary. |
VSFH_TryMatch | 268435456 | Search for match at span: don't change state (current match span, tags). |
VSFH_SetMatch | 536870912 | Search for match at span: set match span and tags. |
From textfind.idl:
cpp#
enum __VSFINDHOW {
VSFH_Ambient = 0x00000000,
VSFH_Wrap = 0x00000001,
VSFH_TryMatch = 0x10000000,
VSFH_SetMatch = 0x20000000
};
typedef DWORD VSFINDHOW;
Product | Versions |
---|---|
Visual Studio SDK | 2015, 2017, 2019, 2022 |