FindWindowMatchType Enum
Definition
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.
Represents the matching logic that the DDA uses to find a control
public enum class FindWindowMatchType
public enum FindWindowMatchType
type FindWindowMatchType =
Public Enum FindWindowMatchType
- Inheritance
-
FindWindowMatchType
Fields
Name | Value | Description |
---|---|---|
Ignore | 0 | Finds a control with a name ignoring a specified text. |
Equals | 1 | Finds a control with a name that matches a specified text. |
StartsWith | 2 | Finds a control with a name that starts with a specified text. |
EndsWith | 3 | Finds a control with a name that ends with a specified text. |
Contains | 4 | Finds a control with a name that contains a specified text. |