TileWindows function user32

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

Tiles the specified child windows of the specified parent window.

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

Implementation

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