Link Search Menu Expand Document

SSpread.GetClientArea Method

Explanation Gets the width and height of the spreadsheet display area (excluding the scrollbars).
Call format GetClientArea()
Return value Record object with the following child objects
Type Name Description
Number Width Client area width
Number Height Client area height
Arguments None
Exception None
Example of use
   var ret = GetClientArea();
    print(ret.Width, ret.Height, "\n");