Erase Method



 
The Erase method erases a CD-RW media, if possible.


Syntax

    SiteKiosk.CDRecording.Erase(full)
    
Parameters
    full Boolean value that specifies whether to full erase the CD-RW.
Return Value
    None.
Remarks
    Full erasing means to erase the complete CD-RW physically.
Examples
    The following example erases a complete CD-RW physically.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    SiteKiosk.CDRecording.Erase(true);
    </SCRIPT>
    

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

Back to top