Description
Gets the settings (such as pictures loaded via URL or deployment version, DataWindow SQLPreview, HTTP request header etc.) of the application deployed by PowerClient or PowerServer.
Syntax
Integer CloudAppGet (string n, ref string v)
Argument |
Description |
---|---|
n |
The name of the setting that is case insensitive. The setting can be:
|
v |
The value of the setting that is obtained. |
Return value
Integer.
Returns 1 if the function succeeds and the following negative value if an error occurs.
-1 The application is not deployed by PowerClient or PowerServer.
-2 The name of the setting is invalid.
Examples
CloudAppGet ("picturecachepath", strValue1); CloudAppGet ("clearpicturecacheonclose", strValue2); CloudAppGet ("checkpictureforupdate", strValue3); CloudAppGet ("deploymentversion", strValue4); CloudAppGet ("enablesqlpreview", strValue5) CloudAppGet ("multipartformdataminsize", strValue6);
See also