Autodesk Vault ProfessionalVault API

GetChildAtPoint(Point,GetChildAtPointSkip) Method

Autodesk.DataManagement.Client.Framework.Vault.Forms.ControlsClassicVaultNavigationPathComboboxControl

Retrieves the child control that is located at the specified coordinates, specifying whether to ignore child controls of a certain type.

Syntax

public System.Windows.Forms.Control GetChildAtPoint(
   System.Drawing.Point pt,
   System.Windows.Forms.GetChildAtPointSkip skipValue
)
Public Overloads Function GetChildAtPoint( _
   ByVal pt As System.Drawing.Point, _
   ByVal skipValue As System.Windows.Forms.GetChildAtPointSkip _
) As System.Windows.Forms.Control

Parameters

NameDescription
ptA System.Drawing.Point that contains the coordinates where you want to look for a control. Coordinates are expressed relative to the upper-left corner of the control's client area.
skipValueOne of the values of System.Windows.Forms.GetChildAtPointSkip, determining whether to ignore child controls of a certain type.

Return Value

The child System.Windows.Forms.Control at the specified coordinates.

See Also