TreeScope 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.
Contains values that specify the scope of elements within the UI Automation tree.
This enumeration supports a bitwise combination of its member values.
public enum class TreeScope
[System.Flags]
public enum TreeScope
[<System.Flags>]
type TreeScope =
Public Enum TreeScope
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
Element | 1 | Specifies that the search include the element itself. |
Children | 2 | Specifies that the search include the element's immediate children. |
Descendants | 4 | Specifies that the search include the element's descendants, including children. |
Subtree | 7 | Specifies that the search include the root of the search and all descendants. |
Parent | 8 | Specifies that the search include the element's parent. Not supported. |
Ancestors | 16 | Specifies that the search include the element's ancestors, including the parent. Not supported. |
Remarks
These values are used to specify the scope in searching for elements, subscribing to events, and caching.