TSCARWindowClient.ClientArea
From SCAR Divi Manual
Revision as of 02:40, 4 November 2012 by Freddy (talk | contribs) (Created page with "==Definition== Member of TSCARClient, read/write, default False.<source lang="scar" lines="false"> property TSCARClient.ClientArea: Boolean; </source> ==Availability== SC...")
Definition
Member of TSCARClient, read/write, default False.property TSCARClient.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.