Goto: 4C Home | 4C Docs | System PCLs List sys.get_clinfo()

sys.get_clinfo()

Purpose:
sys.get_clinfo() retrieves client info.
Usage:
aval = sys.get_clinfo(<infotype>);
Arguments:

alpha - <infotype> -
Returns:
alpha <aval> - A alpha representation of the requested info.
Where Used:
sys.get_clinfo() can be called from anywhere.
Example:
See the demo.info.1 demo program for an example of sys.get_clinfo().
Description:
sys.get_clinfo() returns a string representation of the requested info. <infotype> must be one of: sys.get_clinfo() always returns an alpha value. If the requested info is numeric, the application will need to convert it.
Requirements
"IdleTime" requires sv version 4.4.7 or higher and client version 4.4.8 or higher.
Some options require both client and server to be at version 4.4.4 or higher.
"4CUpdateStatus" requires client version 5.2.8-02 or later.
Bugs/Features/Comments:
The DisplayWidth, DisplayHeight, WorkAreaWidth, WorkAreaHeight, and IdleTime options require a round trip network request. None of the other options require a network request at all.
Some options are not supported by the non interactive 4C client, 4ccl.
See Also:
sys.get_svinfo()
sys.get_clpref()
sys.set_clpref()


Back to Top