Difference between revisions of "GetClientDimensions"
From SCAR Divi Manual
(Created page with "==Definition== <source lang="scar" lines="false"> procedure GetClientDimensions(out Width, Height: Integer); </source> ==Availability== SCAR Divi 3.00 > Current ==Description==...") |
|||
(2 intermediate revisions by the same user not shown) | |||
Line 5: | Line 5: | ||
==Availability== | ==Availability== | ||
− | SCAR Divi 3.00 > | + | SCAR Divi 3.00 > 3.34 |
==Description== | ==Description== | ||
Line 21: | Line 21: | ||
</source> | </source> | ||
− | [[ | + | ==See Also== |
− | [[Category: | + | *[[GetClientWindowHandle]] |
+ | *[[SetClientWindowHandle]] | ||
+ | |||
+ | [[Category:Deprecated Functions]] |
Latest revision as of 11:10, 25 July 2012
Definition
procedure GetClientDimensions(out Width, Height: Integer);
Availability
SCAR Divi 3.00 > 3.34
Description
Returns the dimensions of the client window that is currently selected in Width and Height.
Example
var w, h: Integer; begin GetClientDimensions(w, h); WriteLn(IntToStr(w) + 'x' + IntToStr(h)); end.