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

ScrollWindow() private method

private ScrollWindow ( IntPtr handle, int XAmount, int YAmount, bool with_children ) : void
handle IntPtr
XAmount int
YAmount int
with_children bool
return void
		internal override void ScrollWindow(IntPtr handle, int XAmount, int YAmount, bool with_children) {
			Hwnd		hwnd;
			Rectangle	rect;

			hwnd = Hwnd.GetObjectFromWindow(handle);

			rect = hwnd.ClientRect;
			rect.X = 0;
			rect.Y = 0;
			ScrollWindow(handle, rect, XAmount, YAmount, with_children);
		}

Same methods

XplatUIX11::ScrollWindow ( IntPtr handle, Rectangle area, int XAmount, int YAmount, bool with_children ) : void
XplatUIX11