BasePnPID Property



 
The BasePnPID property contains the recorder's manufacturer, product ID, and revision information.


Syntax

    [str=] SiteKiosk.CDRecording.RecorderList.Item(index).BasePnPID
    
Possible Values
    String that contains the information.

    The property is read only.
Remarks
    This string can be used to consistently identify a specific class of device by make and model. It can be used by applications to customize their behavior according to the specific recorder type.
Examples
    The following example shows the manufacturer, product ID, and revision information of the first existing recorder in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKiosk.CDRecording.RecorderList.Item(1).BasePnPID);
    </SCRIPT>
    

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

Back to top