Type Property



 
The Type property contains the type of the dialog.


Syntax

    SKHtmlDialog.Type [=str]
Possible Values
    String that specifies or retrieves the type of dialog.

    The property is read/write.
Remarks
    Dialogs can be referenced through the type name.
Examples
    The following example creates an own "mydialogtype" dialog.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    mydialog = SiteKiosk.SiteKioskUI.CreateHTMLDialog();
    mydialog.Type = "mydialogtype";
    mydialog.URL = "http://www.myaddress.com";
    mydialog.ShowDialog();
    </SCRIPT>
    

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

Back to top