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

XGetWindowProperty() static private method

static private XGetWindowProperty ( IntPtr display, IntPtr window, IntPtr atom, IntPtr long_offset, IntPtr long_length, bool delete, IntPtr req_type, IntPtr &actual_type, int &actual_format, IntPtr &nitems, IntPtr &bytes_after, IntPtr &prop ) : int
display IntPtr
window IntPtr
atom IntPtr
long_offset IntPtr
long_length IntPtr
delete bool
req_type IntPtr
actual_type IntPtr
actual_format int
nitems IntPtr
bytes_after IntPtr
prop IntPtr
return int
		internal static int XGetWindowProperty(IntPtr display, IntPtr window, IntPtr atom, IntPtr long_offset, IntPtr long_length, bool delete, IntPtr req_type, out IntPtr actual_type, out int actual_format, out IntPtr nitems, out IntPtr bytes_after, ref IntPtr prop) {
			DebugHelper.TraceWriteLine ("XGetWindowProperty");
			return _XGetWindowProperty(display, window, atom, long_offset, long_length, delete, req_type, out actual_type, out actual_format, out nitems, out bytes_after, ref prop);
		}
XplatUIX11