CanRewrite Property
The CanRewrite property indicates whether the recorder is able to rewrite a CD-RW.
Syntax
[bool=] SiteKiosk.CDRecording.RecorderList.Item(index).CanRewrite
|
Possible Values
Boolean value that retrieves the RW status.
|
The property is read only.
Remarks
Examples
The following example determines whether the first existing recorder is able to rewrite CD-RW's and shows it in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.CDRecording.RecorderList.Item(1).CanRewrite);
</SCRIPT>
|
Applies to
SiteKiosk v6.0 (and later versions).
Back to top