DownloadLimit Property



 
The DownloadLimit property contains the maximum size of downloads in bytes.


Syntax

    [long=] SiteKiosk.Network.Downloads.DownloadLimit
Possible Values
    Long value that retrieves the maximum number of bytes.

    The property is read only.
Remarks
    The maximum download size can be defined in the SiteKiosk configuration.
Examples
    The following example shows the maximum download size in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKiosk.Network.Downloads.DownloadLimit);
    </SCRIPT>
    

Applies to
    SiteKiosk v5.5 (and later versions).

Back to top