System.Windows.Forms.XplatUIX11.IsVisible C# (CSharp) Method

IsVisible() private method

private IsVisible ( IntPtr handle ) : bool
handle IntPtr
return bool
		internal override bool IsVisible(IntPtr handle) {
			Hwnd hwnd = Hwnd.ObjectFromHandle (handle);
			return (hwnd != null && hwnd.visible);
		}
XplatUIX11