NativeWindow.FromHandle(IntPtr) Method

Definition

Retrieves the window associated with the specified handle.

public:
 static System::Windows::Forms::NativeWindow ^ FromHandle(IntPtr handle);
public static System.Windows.Forms.NativeWindow FromHandle (IntPtr handle);
public static System.Windows.Forms.NativeWindow? FromHandle (IntPtr handle);
static member FromHandle : nativeint -> System.Windows.Forms.NativeWindow
Public Shared Function FromHandle (handle As IntPtr) As NativeWindow

Parameters

handle
IntPtr

nativeint

A handle to a window.

Returns

The NativeWindow associated with the specified handle. This method returns null when the handle does not have an associated window.

Remarks

If you receive a handle from another method, use this method to retrieve the window associated with the handle. The handle must already be owned by another NativeWindow in the current process; otherwise, null is returned.

Applies to

See also