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

XGetGeometry() static private method

static private XGetGeometry ( IntPtr display, IntPtr window, IntPtr &root, int &x, int &y, int &width, int &height, int &border_width, int &depth ) : bool
display IntPtr
window IntPtr
root IntPtr
x int
y int
width int
height int
border_width int
depth int
return bool
		internal static bool XGetGeometry(IntPtr display, IntPtr window, out IntPtr root, out int x, out int y, out int width, out int height, out int border_width, out int depth) {
			DebugHelper.TraceWriteLine ("XGetGeometry");
			return _XGetGeometry(display, window, out root, out x, out y, out width, out height, out border_width, out depth);
		}

Same methods

XplatUIX11::XGetGeometry ( IntPtr display, IntPtr window, IntPtr root, IntPtr x, IntPtr y, int &width, int &height, IntPtr border_width, IntPtr depth ) : bool
XplatUIX11::XGetGeometry ( IntPtr display, IntPtr window, IntPtr root, int &x, int &y, IntPtr width, IntPtr height, IntPtr border_width, IntPtr depth ) : bool
XplatUIX11::XGetGeometry ( IntPtr display, IntPtr window, IntPtr root, int &x, int &y, int &width, int &height, IntPtr border_width, IntPtr depth ) : bool
XplatUIX11