GetChildAtPointSkip Enum

Definition

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
GetChildAtPointSkip
Attributes

Fields

Disabled 2

Skips disabled child windows.

Invisible 1

Skips invisible child windows.

None 0

Does not skip any 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.

Applies to