ScrollDC

[DllImport("user32.dll", SetLastError = true)]
public static extern bool ScrollDC(
   IntPtr hDC,
   int dx,
   int dy,
   ref RECT lprcScroll,
   ref RECT lprcClip,
   IntPtr hrgnUpdate,
   ref RECT lprcUpdate
);

Microsoft documentation: Link

Last updated