CascadeWindows function user32

int CascadeWindows(
  1. int hwndParent,
  2. int wHow,
  3. Pointer<RECT> lpRect,
  4. int cKids,
  5. Pointer<IntPtr> lpKids
)

Cascades the specified child windows of the specified parent window.

WORD CascadeWindows(
  HWND       hwndParent,
  UINT       wHow,
  const RECT *lpRect,
  UINT       cKids,
  const HWND *lpKids
);

Implementation

int CascadeWindows(int hwndParent, int wHow, Pointer<RECT> lpRect, int cKids,
        Pointer<IntPtr> lpKids) =>
    _CascadeWindows(hwndParent, wHow, lpRect, cKids, lpKids);