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

ClientToScreen() private method

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

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

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