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

ScreenToClient() private method

private ScreenToClient ( IntPtr handle, System.Windows.Forms.CarbonInternal &point ) : void
handle System.IntPtr
point System.Windows.Forms.CarbonInternal
return void
		internal void ScreenToClient(IntPtr handle, ref Carbon.QDPoint point) {
			int x = (int) point.x;
			int y = (int) point.y;

			ScreenToClient (handle, ref x, ref y);

			point.x = (short) x;
			point.y = (short) y;
		}
		

Same methods

XplatUICarbon::ScreenToClient ( IntPtr handle, int &x, int &y ) : void
XplatUICarbon