Difference between revisions of "SetClientWindowHandle"

From SCAR Divi Manual
Jump to: navigation, search
(Created page with "==Definition== <source lang="scar" lines="false"> procedure SetClientWindowHandle(H: Integer); </source> ==Availability== SCAR Divi 3.00 > Current ==Description== Sets a new wi...")
 
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
==Definition==
 
==Definition==
 
<source lang="scar" lines="false">
 
<source lang="scar" lines="false">
procedure SetClientWindowHandle(H: Integer);
+
procedure SetClientWindowHandle(const H: Hwnd);
 
</source>
 
</source>
  
 
==Availability==
 
==Availability==
SCAR Divi 3.00 > Current
+
SCAR Divi 3.00 > 3.34
  
 
==Description==
 
==Description==
Line 25: Line 25:
 
*[[SetTargetDC]]
 
*[[SetTargetDC]]
  
[[Category:Functions]]
+
[[Category:Deprecated Functions]]
[[Category:Client Functions]]
 

Latest revision as of 12:11, 25 July 2012

Definition

procedure SetClientWindowHandle(const H: Hwnd);

Availability

SCAR Divi 3.00 > 3.34

Description

Sets a new window as client specified by thez given window handle H.

Example

begin
  SetClientWindowHandle(123456);
  WriteLn(GetClientWindowHandle);
end.

Output:

123456

See Also