Abort Method



 
The Abort method aborts the download.


Syntax

    SiteKiosk.Network.Downloads.Item(index).Abort()
    
Return Value
    None.
Remarks
    None.
Examples
    The following example terminates the first existing download.

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

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

Back to top