GetChildAtPointSkip 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.
Specifies which child controls to skip.
This enumeration supports a bitwise combination of its member values.
public enum class GetChildAtPointSkip
[System.Flags]
public enum GetChildAtPointSkip
[<System.Flags>]
type GetChildAtPointSkip =
Public Enum GetChildAtPointSkip
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | Does not skip any child windows. |
Invisible | 1 | Skips invisible child windows. |
Disabled | 2 | Skips disabled child windows. |
Transparent | 4 | Skips transparent child windows. |
Remarks
The system maintains an internal list that contains the child controls associated with a parent window. The order of the controls in the list depends on the z-order of the child controls. If more than one child window contains the specified point, the system returns the first control in the list that contains the point and meets the criteria specified by GetChildAtPointSkip.
For more information, see ChildWindowFromPointEx
in the Platform SDK documentation.