====== SetClientSize ======
Sets the size of the browser's client part according to the specified values.
===== Syntax =====
procedure SetClientSize(aSize: TCSPoint);
==== Parameters ====
* **//aSize//**
* //type:// [[en:wascript:pascal:records:tcspoint|TCSPoint]]
* //functions:// new window dimensions
===== Notes =====
* The X and Y fields of aSize parameter determine the new width and height of the browser window, respectively.
===== Examples =====
-var dim:TCSPoint;
dim.X:=1050;
dim.Y:=750;
SetClientSize(dim);