SequenceNo Property



 
The SequenceNo property contains the ID of the logfile message.


Syntax

    [long=] SiteKiosk.Logfile.LastMessages.Item(index).SequenceNo
    
Possible Values
    Long value that retrieves the ID.

    The property is read only.
Remarks
    None.
Examples
    The following example shows the ID of the first message in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKiosk.Logfile.LastMessages.Item(1).SequenceNo);
    </SCRIPT>

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

Back to top