ScrollWindow (user32)
Last changed: -203.122.50.2

.
Summary

C# Signature:

[DllImport("user32.dll")]
static extern bool ScrollWindow(IntPtr hWnd, int XAmount, int YAmount,
   IntPtr lpRect, [In] ref RECT lpClipRect);

User-Defined Types:

None.

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Alternative Managed API:

Do you know one? Please contribute it!

Documentation

VB API Declaration:

'''Public Type RECT

    Left As Long
    Top As Long
    Right As Long
    Bottom As Long

End Type'''

Public Declare Function ScrollWindow Lib "user32" Alias "ScrollWindow" (ByVal hWnd As Long, ByVal XAmount As Long, ByVal YAmount As Long, lpRect As RECT, lpClipRect As RECT) As Long