CreateStringTable Method



 
The CreateStringTable method creates a new empty stringtable.


Syntax

    [obj=] SiteKioskConfig.CreateStringTable()
    
Return Value Remarks
    The new stringtable is empty, use the LoadFile method to load strings from a file.
Examples
    The following example creates a new stringtable and loads all strings from a file.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    myStrTab = SiteKioskConfig.CreateStringTable();
    myStrTab.LoadFile("mystringtable.xml");
    </SCRIPT>
    

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

Back to top