DragData Property
The DragData property contains the name of files dragged into the browser window.
Syntax
[str=] SKHtmlDialog.DragData
|
Possible Values
String that retrieves the drag data.
|
The property is read only.
Remarks
Examples
The following example shows the drag data in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
mydialog = SiteKiosk.SiteKioskUI.CreateHTMLDialog();
mydialog.Title = true;
mydialog.URL = "http://www.myaddress.com";
mydialog.ShowDialog();
alert(mydialog.DragData);
</SCRIPT>
|
Applies to
SiteKiosk v6.0 (and later versions).
Back to top