Item Method
The Item method returns one item of the collection.
Syntax
[obj=] SiteKiosk.CDRecording.RecorderList.Item(index)
|
Parameters
index |
Long value that contains the item number to return. |
Return Value
Returns a CDRecorder object that provides information about the CD recorder.
Remarks
Collection-index values are 1-based.
Examples
The following example shows the maximum write speed of an available CD recorder in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
if (SiteKiosk.CDRecording.RecorderList.Count > 0)
{
alert(SiteKiosk.CDRecording.RecorderList.Item(1).MaxWriteSpeed);
}
else
{
alert("Could not find a CD recorder");
}
</SCRIPT>
|
Applies to
SiteKiosk v6.0 (and later versions).
Back to top