Difference between revisions of "TSCARWindowClient.ClientArea"
From SCAR Divi Manual
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
==Definition== | ==Definition== | ||
Member of [[TSCARWindowClient]], read/write, default False.<source lang="scar" lines="false"> | Member of [[TSCARWindowClient]], read/write, default False.<source lang="scar" lines="false"> | ||
− | property | + | property TSCARWindowClient.ClientArea: Boolean; |
</source> | </source> | ||
Line 25: | Line 25: | ||
==See Also== | ==See Also== | ||
*[[TSCARClient.InputArea]] | *[[TSCARClient.InputArea]] | ||
− | *[[TSCARClient. | + | *[[TSCARClient.ImageArea]] |
Latest revision as of 02:41, 4 November 2012
Definition
Member of TSCARWindowClient, read/write, default False.property TSCARWindowClient.ClientArea: Boolean;
Availability
SCAR Divi 3.35 > Current
Description
Keeps the client area of the window selected if the property is set to true.
Example
var Client: TSCARWindowClient; begin Client := TSCARWindowClient(GetClient); WriteLn(BoxToStr(Client.ImageArea)); Client.ClientArea := True; WriteLn(BoxToStr(Client.ImageArea)); end.