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

XClearArea() static private method

static private XClearArea ( IntPtr display, IntPtr window, int x, int y, int width, int height, bool exposures ) : int
display IntPtr
window IntPtr
x int
y int
width int
height int
exposures bool
return int
		internal static int XClearArea(IntPtr display, IntPtr window, int x, int y, int width, int height, bool exposures) {
			DebugHelper.TraceWriteLine ("XClearArea");
			return _XClearArea(display, window, x, y, width, height, exposures);
		}
XplatUIX11