DownloadSize Property



 
The DownloadSize property contains the file size.


Syntax

    [long=] SiteKiosk.Network.Downloads.Item(index).DownloadSize
Possible Values
    Long value that retrieves the file size.

    The property is read only.
Remarks
    None.
Examples
    The following example shows the file size of the first download.

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

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

Back to top