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;
|