LoadDocument Method



 
The LoadDocument method loads a xml file.


Syntax

    [obj=] SiteKiosk.XML.LoadDocument(path)
Parameters
    path String that specifies the path of the xml file.
Return Value Remarks
    The returned object provides members to modify the xml document.
Examples
    The following example loads a xml file.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    xmlDoc = SiteKiosk.XML.LoadDocument("c:/file.xml");
    </SCRIPT>
    

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

Back to top