FileName Property
The FileName property contains the filename.
Syntax
[str=] SiteKiosk.Network.Downloads.Item(index).FileName
|
Possible Values
String that retrieves the name of the file.
|
The property is read only.
Remarks
Examples
The following example shows the filename of the first download.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.Network.Downloads.Item(1).FileName);
</SCRIPT>
|
Applies to
SiteKiosk v5.5 (and later versions).
Back to top