System.Windows.Forms.XplatUICarbon.ScreenToClient C# (CSharp) Method

ScreenToClient() private method

private ScreenToClient ( IntPtr handle, int &x, int &y ) : void
handle System.IntPtr
x int
y int
return void
		internal override void ScreenToClient(IntPtr handle, ref int x, ref int y) {
			Hwnd hwnd = Hwnd.ObjectFromHandle (handle);

			Point point = ConvertScreenPointToClient (hwnd.ClientWindow, new Point (x, y));

			x = point.X;
			y = point.Y;
		}

Same methods

XplatUICarbon::ScreenToClient ( IntPtr handle, System.Windows.Forms.CarbonInternal &point ) : void
XplatUICarbon