Difference between revisions of "GetClientDimensions"

From SCAR Divi Manual
Jump to: navigation, search
Line 5: Line 5:
  
 
==Availability==
 
==Availability==
SCAR Divi 3.00 > Current
+
SCAR Divi 3.00 > 3.35
  
 
==Description==
 
==Description==
Line 25: Line 25:
 
*[[SetClientWindowHandle]]
 
*[[SetClientWindowHandle]]
  
[[Category:Functions]]
+
[[Category:Deprecated Functions]]
[[Category:Client Functions]]
 

Revision as of 03:57, 25 July 2012

Definition

procedure GetClientDimensions(out Width, Height: Integer);

Availability

SCAR Divi 3.00 > 3.35

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.

See Also