ShowImgStack

Declaration: ShowImgStack(PosX, PosY, Wid, Hgt: integer): integer;
Displays the image stack and adjusts its position and size on the screen. The parameters PosX and PosY specify the top left corner (in pixel coordinates of the virtual screen), the parameters Wid and Hgt specify the width and the height of the image stack window. The function returns a zero number if it has been executed successfully.

Example: The following code snippet retrieves the parameters of monitor 1 and displays the image stack after resizing it to fit the entire monitor:
var
  lft, top, wid, hgt : integer;

begin
GetMonitorParams(1, lft, top, wid, hgt);
ShowImgStack (lft, top, wid, hgt);
end;