UtilFormsGetControlFromPoint(Form) Method
Gets the corresponding control (if any) that is over the current mouse point.
Namespace: DevCase.Core.Application.FormsAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
Public Shared Function GetControlFromPoint (
form As Form
) As Control
Dim form As Form
Dim returnValue As Control
returnValue = UtilForms.GetControlFromPoint(form)
public:
static Control^ GetControlFromPoint(
Form^ form
)
static member GetControlFromPoint :
form : Form -> Control
No code example is currently available or this language may not be supported.
- form Form
-
The source Form where to search for.
Control
The resulting
Control, or
.
This is a code example.
No code example is currently available or this language may not be supported.
Dim ctrl As Control = GetControlFromPoint(Me)
If (ctrl IsNot Nothing) Then
Console.WriteLine(ctrl.Name)
End If
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.