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

XGetGeometry() static private method

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

Same methods

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::XGetGeometry ( IntPtr display, IntPtr window, IntPtr &root, int &x, int &y, int &width, int &height, int &border_width, int &depth ) : bool
XplatUIX11