MediaFlags Property



 
The MediaFlags property contains the flags of the current media.


Syntax

    [long=] SiteKiosk.CDRecording.MediaFlags
    
Possible Values
    Long value that retrieves the media flags.

    The property is read only.
Remarks
    Possible media flags are:

    MEDIA_BLANK = 1
    MEDIA_RW = 2
    MEDIA_WRITABLE = 4
    MEDIA_FORMAT_UNUSABLE_BY_IMAPI = 8

    Use the UpdateMediaInfo method to update this property.
Examples
    The following example shows the media flags in an alert window.

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

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

Back to top