Returns the control that is currently associated with handle. This method will search up the HWND parent chain until it finds some handle that is associated with with a control. This method is more robust that fromHandle because it will correctly return controls that own more than one handle.
[Visual Basic] Public Shared Function FromChildHandle( _ ByVal handle As Integer _ ) As Control [C#] public static Control FromChildHandle( int handle ); [C++] public: static Control* FromChildHandle( int handle ); [JScript] public static function FromChildHandle( handle : int ) : Control;
Control associated with handle, or null if no control was found.