CascadeChildWindows

[DllImport("user32.dll", SetLastError = true)]
public static extern uint CascadeChildWindows(
   IntPtr hWndParent,
   uint wHow
);

Microsoft documentation: Link

Last updated